forked from JonathanPrince/loopback-component-fixtures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.21 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
{
"name": "loopback-component-fixtures",
"version": "1.1.0",
"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 <jonathan.prince@gmail.com>",
"license": "MIT",
"dependencies": {
"app-root-path": "^2.0.1",
"async": "^1.4.2",
"debug": "^2.2.0",
"loopback": "^2.22.2",
"loopback-datasource-juggler": "^2.41.0",
"merge": "^1.2.0"
},
"devDependencies": {
"chai": "^3.3.0",
"istanbul": "^0.4.4",
"mocha": "^2.3.3",
"supertest": "^1.1.0"
}
}