forked from Renaud8469/hypermedia-transitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.7 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
45
46
47
48
49
{
"name": "hypermedia-transitions",
"version": "1.3.1",
"description": "Module to specify state transitions and transform them into hypermedia format",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && npm run test_coverage",
"test_mocha": "_mocha test --recursive",
"lint": "eslint index.js state_transitions translators interceptors",
"test_coverage": "istanbul cover --include-all-sources -x 'test/**' --report lcov _mocha -- --recursive test && NODE_ENV=test istanbul check-coverage --statement 90 --functions 90 --lines 90 --branches 90",
"cover": "istanbul cover --include-all-sources -x 'test/**' ./node_modules/mocha/bin/_mocha --report lcovonly -- --recursive test -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Renaud8469/hypermedia-transitions.git"
},
"keywords": [
"hateoas",
"hypermedia",
"haljson",
"siren"
],
"author": "Renaud Dahl",
"license": "MIT",
"bugs": {
"url": "https://github.com/Renaud8469/hypermedia-transitions/issues"
},
"homepage": "https://github.com/Renaud8469/hypermedia-transitions#readme",
"devDependencies": {
"chai": "^4.1.1",
"coveralls": "^2.13.1",
"eslint": "^4.4.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"mocha-lcov-reporter": "^1.3.0"
},
"dependencies": {
"express-interceptor": "^1.2.0",
"lodash": "^4.17.4"
}
}