-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.39 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
{
"name": "scraper-api",
"version": "1.2.0",
"main": "index.js",
"dependencies": {
"bunyan": "^1.8.12",
"chai": "^4.1.2",
"chai-shallow-deep-equal": "^1.4.4",
"lodash": "^4.17.10",
"moment": "^2.22.1",
"mongodb": "^3.1.3",
"nconf": "^0.10.0",
"parse5": "^5.1.0",
"request": "^2.79.0",
"restify": "^7.1.1",
"restify-clients": "^2.0.2",
"restify-cors-middleware": "^1.1.0",
"superagent": "^4.0.0",
"xmldom": "^0.1.27",
"xmlserializer": "^0.6.1",
"xpath": "0.0.27"
},
"devDependencies": {
"coveralls": "^2.12.0",
"istanbul": "^0.4.5",
"jasmine-node": "^1.14.5",
"jshint": "2.9.2",
"mocha": "^3.2.0",
"supertest": "^3.0.0",
"swagger-test": "^0.7.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3"
},
"license": "MIT",
"scripts": {
"start": "node index.js",
"test": "node_modules/jshint/bin/jshint routes/ tests/ *.json index.js && node_modules/jasmine-node/bin/jasmine-node --verbose tests/",
"test-api": "node_modules/jshint/bin/jshint routes/ tests/ *.json index.js && mocha api-tests/swagger-test.js",
"test-agent": "tape agent-tests/* | tap-spec",
"coverage": "istanbul cover _mocha api-tests --recursive -- -u exports -R spec && open coverage/lcov-report/index.html",
"coveragej": "istanbul cover jasmine-node tests",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
}
}