-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 KB
/
package.json
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
{
"name": "hc-sdk-js",
"version": "1.0.0",
"main": "dest/healthcloud_sdk.js",
"module": "src/index.js",
"license": "BSD-3-Clause",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"lint": "eslint src test",
"karma": "karma start karma.conf.js",
"karma:prod": "karma start karma.conf.js --single-run",
"test": "yarn lint && yarn build && yarn karma:prod && codecov"
},
"dependencies": {
"babel-core": "^6.24.1",
"crypto-js": "^3.1.9-1",
"es6-promise": "^4.1.0",
"json-server": "^0.10.3",
"superagent": "^3.5.2",
"superagent-bluebird-promise": "^4.2.0"
},
"devDependencies": {
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"browserify-babel-istanbul": "^0.4.0",
"chai": "^3.5.0",
"codecov": "^2.2.0",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.7.0",
"karma": "^1.7.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-browserify": "^5.1.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^1.3.1",
"karma-sinon-stub-promise": "^1.0.0",
"karma-webpack": "^2.0.4",
"mocha": "^3.5.0",
"proxyquire": "^1.8.0",
"proxyquire-universal": "^1.0.8",
"proxyquireify": "^3.2.1",
"sinon": "^2.2.0",
"sinon-chai": "^2.12.0",
"sinon-stub-promise": "^4.0.0",
"watchify": "^3.9.0",
"webpack": "^3.4.1",
"webpack-dev-middleware": "^1.10.2",
"zerokit-web-sdk": "^4.0.6"
}
}