-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.36 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
{
"name": "point-collector",
"description": "Collector of points",
"version": "0.0.4",
"author": "Codenautas <[email protected]>",
"repository": "codenautas/point-collector",
"license": "MIT",
"main": "index.js",
"files": [
"index.js"
],
"dependencies": {
"backend-plus": "~0.18.25"
},
"devDependencies": {},
"engines": {
"node": ">= 4.0.0"
},
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-nc": "mocha --reporter spec --bail --check-leaks --no-colors test/",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"test-cli": "node server/karma-server.js --karma karma.conf.js --single-run",
"test-cli-h": "node server/karma-server.js --karma karma.conf.js",
"test-cli-ff": "npm run test-cli -- --browsers Firefox",
"test-cli-saf": "npm run test-cli -- --browsers Safari",
"start": "node server/server-point-collector.js",
"report": "istanbul report",
"all": "npm test && npm run test-cov && npm run report && qa-control . -v"
},
"qa-control": {
"package-version": "0.3.0",
"coverage": 90,
"run-in": "server",
"stability": "extending",
"type": "app",
"ecmaVersion": 6
}
}