-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.26 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
{
"name": "albion-data",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"private": true,
"dependencies": {
"axios": "^0.19.0",
"json2csv": "^4.5.2",
"lodash": "^4.17.19"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "5.2.0",
"del-cli": "^1.1.0",
"esdoc": "^1.1.0",
"esdoc-node": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.16.0",
"eslint-plugin-mocha": "^5.3.0",
"mocha": "^6.1.4",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"rewire": "^4.0.1",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0"
},
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"docs:clean": "del-cli ./docs/*",
"docs:generate": "esdoc",
"docs": "npm-run-all docs:clean docs:generate",
"test:run": "cross-env NODE_ENV=test DD_TRACE_ENABLED=false nyc --silent --temp-directory=./.nyc_output mocha --opts=.mocha.opts",
"test:report": "nyc --no-clean --temp-directory=./.nyc_output report --reporter=text --reporter=html --reporter=lcov",
"test": "npm-run-all test:run test:report lint",
"start": "index.js"
}
}