-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
37 lines (37 loc) · 1.17 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
{
"name": "loopback-component-fixtures",
"version": "1.1.1",
"description": "Component for handling fixture data for client side tests",
"main": "index.js",
"scripts": {
"test": "npm run cover && npm run assert_coverage_thresholds",
"cover": "NODE_ENV=test istanbul cover node_modules/.bin/_mocha -- test",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"assert_coverage_thresholds": "istanbul check-coverage --statement -90 --branch -85 --function 100 --lines 90"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JonathanPrince/loopback-component-fixtures"
},
"keywords": [
"loopback",
"component",
"fixtures",
"testing"
],
"author": "Jonathan Prince <[email protected]>",
"license": "MIT",
"dependencies": {
"app-root-path": "^2.0.1",
"async": "^2.5.0",
"debug": "^2.2.0",
"merge": "^1.2.0"
},
"devDependencies": {
"chai": "^4.1.0",
"istanbul": "^0.4.4",
"loopback": "^3.9.0",
"mocha": "^3.4.2",
"supertest": "^3.0.0"
}
}