-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "blip-sdk",
"version": "10.1.0",
"description": "BLiP SDK JavaScript",
"main": "dist/blip-sdk.js",
"typings": "dist/types/blip-sdk.d.ts",
"files": [
"dist/blip-sdk.js",
"dist/types/blip-sdk.d.ts"
],
"typescript": {
"definition": "dist/types/blip-sdk.d.ts"
},
"scripts": {
"commit": "./node_modules/.bin/git-cz",
"bundle": "./node_modules/.bin/webpack",
"lint": "./node_modules/.bin/eslint .",
"test": "./node_modules/.bin/mocha ./test --recursive --compilers js:babel-core/register -w",
"test:single": "./node_modules/.bin/babel-node ./node_modules/babel-istanbul/lib/cli cover ./node_modules/mocha/bin/_mocha -- --recursive ./test -R spec",
"test:check-coverage": "./node_modules/.bin/istanbul check-coverage",
"test:upload-coverage": "cat ./coverage/lcov.info | codecov",
"semantic-release": "semantic-release --prepare && npm publish && semantic-release post",
"semantic-release-local": "semantic-release --prepare --debug=false && npm publish && semantic-release post --debug=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/takenet/blip-sdk-js.git"
},
"author": "Take.net",
"license": "MIT",
"bugs": {
"url": "https://github.com/takenet/blip-sdk-js/issues"
},
"homepage": "https://github.com/takenet/blip-sdk-js#readme",
"devDependencies": {
"babel": "^6.3.13",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.21",
"babel-eslint": "^4.1.6",
"babel-istanbul": "^0.5.9",
"babel-loader": "^6.2.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.4.1",
"codecov.io": "^0.1.6",
"commitizen": "^2.8.2",
"cz-conventional-changelog": "^2.1.0",
"dts-bundle": "^0.7.3",
"eslint": "^1.10.3",
"eslint-loader": "^1.1.1",
"ghooks": "^1.2.4",
"istanbul": "^0.4.1",
"json-loader": "^0.5.4",
"mocha": "^2.3.4",
"semantic-release": "^15.9.15",
"ts-loader": "3.5.0",
"typescript": "3.2.2",
"webpack": "^1.12.9"
},
"dependencies": {
"bluebird": "^3.4.0",
"js-base64": "^2.1.9",
"lime-js": "^3.0.1",
"lime-transport-websocket": "^2.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}