forked from holidayextras/jsonapi-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.11 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.11 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "jsonapi-server",
"version": "1.4.0",
"description": "A config driven NodeJS framework implementing json:api",
"keywords": [
"jsonapi",
"json:api",
"swagger",
"api"
],
"main": "lib/jsonApi.js",
"author": "Oliver Rumbelow",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/holidayextras/jsonapi-server"
},
"engines": {
"node": "*"
},
"dependencies": {
"async": "1.5.2",
"body-parser": "1.14.2",
"cookie-parser": "1.4.0",
"debug": "2.2.0",
"express": "4.13.3",
"flow-bin": "^0.23.1",
"joi": "6.10.1",
"jscpd": "^0.6.1",
"lodash.assign": "3.2.0",
"lodash.isequal": "3.0.4",
"lodash.omit": "3.1.0",
"lodash.pick": "3.1.0",
"lodash.uniq": "3.2.2",
"node-uuid": "1.4.7",
"request": "2.67.0"
},
"devDependencies": {
"mocha": "2.2.5",
"eslint": "0.24.1",
"blanket": "1.1.7",
"mocha-lcov-reporter": "0.0.2",
"coveralls": "2.11.2",
"plato": "1.5.0",
"mocha-performance": "0.1.0",
"node-inspector": "0.12.5",
"v8-profiler": "5.5.0"
},
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha -S -R spec ./test/*.js",
"start": "node example/server.js",
"coveralls": "node ./node_modules/mocha/bin/mocha -S --require blanket --reporter mocha-lcov-reporter ./test/*.js | node ./node_modules/coveralls/bin/coveralls.js",
"coverage": "node ./node_modules/mocha/bin/mocha -S --require blanket --reporter html-cov ./test/*.js > coverage.html",
"complexity": "node ./node_modules/plato/bin/plato -r -d complexity lib",
"performance": "node --allow-natives-syntax --harmony ./node_modules/mocha/bin/_mocha -S --reporter mocha-performance ./test/*.js",
"lint": "node ./node_modules/eslint/bin/eslint ./example ./lib ./test --quiet && echo '✔ All good!'",
"jscpd": "jscpd --blame -p ./lib/ || echo 'Finished!'",
"flow": "node ./node_modules/flow-bin/cli.js && echo '✔ All good!'"
},
"config": {
"blanket": {
"pattern": ".js",
"data-cover-never": [
"node_modules",
"test",
"example"
]
}
}
}