-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·60 lines (60 loc) · 2.11 KB
/
package.json
File metadata and controls
executable file
·60 lines (60 loc) · 2.11 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
{
"name": "@axerunners/dapi-client",
"version": "0.5.0",
"description": "Client library used to access AXE DAPI endpoints",
"main": "index.js",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@axerunners/dapi-grpc": "^0.5.1",
"@axerunners/axecore-lib": "^0.17.1",
"@axerunners/quorums": "^1.0.0",
"axios": "^0.18.0",
"lodash": "^4.17.11",
"lowdb": "^1.0.0"
},
"devDependencies": {
"@axerunners/ap-services-ctl": "^0.7.1",
"@axerunners/app": "^v0.7.1",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"dotenv-safe": "^6.1.0",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"graceful-fs": "^4.1.15",
"istanbul": "^0.4.5",
"karma": "^4.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"node-fetch": "^2.3.0",
"nyc": "^14.0.0",
"sinon": "^7.2.2",
"webpack": "^4.28.1",
"webpack-cli": "^3.3.2"
},
"scripts": {
"build": "webpack --display-error-details",
"lint": "eslint .",
"test": "npm run build && npm run test:node && npm run test:firefox",
"test:node": "nyc --check-coverage --reporter=html --reporter=text --lines=83 --branches=63 --functions=70 mocha test/src --recursive",
"test:firefox": "karma start ./karma.conf.js --browsers Firefox --single-run",
"test:integration": "mocha './test/integration/*.spec.js' --timeout 240000",
"check-package": "npm run check-package:name && npm run check-package:version",
"check-package:name": "test $(jq -r .name package.json) = $(jq -r .name package-lock.json)",
"check-package:version": "test $(jq -r .version package.json) = $(jq -r .version package-lock.json)",
"prepublishOnly": "npm run build"
},
"author": "",
"license": "MIT"
}