-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
{
"name": "express-autoroute-json",
"version": "3.6.3",
"description": "Express Auto Route Json is an automatic JSON 'REST' api builder for express-autoroute",
"main": "index.js",
"engines": {
"node": ">=0.10"
},
"scripts": {
"coverage": "NODE_ENV=test nyc -a report --reporter=text-lcov mocha > coverage/lcov.info",
"lint:js": "eslint .",
"start-docker": "docker run -d -p 27017:27017 --rm --name express-autoroute-json-mongo mongo",
"stop-docker": "docker stop express-autoroute-json-mongo",
"test-watch": "NODE_ENV=test mocha --recursive -w --reporter min",
"test": "NODE_ENV=test nyc -a mocha --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/stonecircle/express-autoroute-json"
},
"keywords": [
"express",
"autoroute",
"json",
"routing"
],
"author": "Chris Manson [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/stonecircle/express-autoroute-json/issues"
},
"homepage": "https://github.com/stonecircle/express-autoroute-json",
"devDependencies": {
"body-parser": "^1.19.2",
"chai": "^4.3.6",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.25.4",
"express": "^4.17.3",
"express-autoroute": "^2.1.1",
"istanbul": "^0.4.4",
"jsonschema": "^1.4.0",
"mocha": "^5.2.0",
"mongoose": "^5.3.14",
"nyc": "^13.1.0",
"q": "^1.0.1",
"supertest": "^3.3.0",
"winston": "^3.6.0"
},
"dependencies": {
"camelcase-keys": "^5.0.0",
"jsonapi-serializer": "^3.6.4",
"lodash": "^4.17.11",
"pluralize": "^7.0.0"
}
}