forked from mansona/express-autoroute-json
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.82 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
{
"name": "jsonapi-server-mini",
"version": "4.3.7",
"description": "Minimalistic JSON:API server for Node.js and MongoDB",
"main": "index.js",
"engines": {
"node": ">=8.0"
},
"scripts": {
"coverage": "NODE_ENV=test nyc -a report --reporter=text-lcov mocha > coverage/lcov.info",
"lint:js": "eslint .",
"start": "nodemon ./test2",
"start-docker": "docker run -d -p 27017:27017 --rm --name jsonapi-server-mini-mongo mongo",
"stop-docker": "docker stop jsonapi-server-mini-mongo",
"test-watch": "NODE_ENV=test mocha --recursive -w --reporter min",
"test-mocha": "NODE_ENV=test mocha --inspect --recursive test",
"test-single": "NODE_ENV=test mocha test/actions/create.js",
"test-nyc": "NODE_ENV=test nyc -a mocha --recursive test",
"test": "NODE_ENV=test mocha --inspect --recursive test"
},
"repository": {
"type": "git",
"url": "https://github.com/Redsandro/jsonapi-server-mini"
},
"keywords": [
"express",
"autoroute",
"jsonapi",
"routing"
],
"author": "Redsandro Media <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Redsandro/jsonapi-server-mini/issues"
},
"homepage": "https://github.com/Redsandro/jsonapi-server-mini",
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"eslint": "^5.9.0",
"express": "^4.16.4",
"istanbul": "^0.4.4",
"jsonschema": "^1.2.4",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"q": "^1.0.1",
"supertest": "^3.3.0"
},
"dependencies": {
"body-parser": "^1.18.3",
"camelcase": "^5.0.0",
"camelcase-keys": "^5.0.0",
"cors": "^2.8.5",
"jsonapi-serializer": "^3.6.4",
"mongoose": "^5.4.15",
"morgan": "^1.9.1",
"pluralize": "^7.0.0",
"recursive-readdir": "^2.2.2",
"winston": "^3.1.0"
}
}