forked from holidayextras/jsonapi-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.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
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
71
72
73
74
75
76
77
78
79
80
{
"name": "jsonapi-server",
"version": "3.0.3",
"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": ">=4.5"
},
"dependencies": {
"async": "2.5.0",
"body-parser": "1.17.2",
"cookie-parser": "1.4.3",
"debug": "2.6.8",
"express": "4.15.3",
"express-graphql": "0.5.4",
"graphql": "0.7.2",
"joi": "10.6.0",
"lodash.assign": "4.2.0",
"lodash.isequal": "4.5.0",
"lodash.omit": "4.5.0",
"lodash.pick": "4.4.0",
"lodash.uniq": "4.5.0",
"lodash.uniqby": "4.7.0",
"qs": "6.5.0",
"request": "2.81.0",
"use-strict": "1.0.1",
"uuid": "3.1.0"
},
"devDependencies": {
"eslint": "4.2.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-node": "5.1.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "3.0.1",
"istanbul": "0.4.5",
"jscpd": "0.6.11",
"lokka": "1.7.0",
"lokka-transport-http": "1.6.1",
"mocha": "3.4.2",
"mocha-performance": "0.1.1",
"node-inspector": "1.1.1",
"plato": "1.7.0",
"swagger-tools": "0.10.1",
"v8-profiler": "5.7.0"
},
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha --require use-strict -S -R spec ./test/*.js",
"start": "node example/server.js",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- -S -R spec",
"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!'",
"swagger": "node ./node_modules/mocha/bin/mocha --require use-strict -S -R spec ./swaggerValidator.js --timeout 60000",
"ci": "npm run jscpd && npm run lint && npm run test && npm run swagger"
},
"config": {
"blanket": {
"pattern": ".js",
"data-cover-never": [
"node_modules",
"test",
"example"
]
}
}
}