-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "express-crud",
"version": "4.0.1",
"description": "Easy CRUD for express apps!",
"main": "./lib",
"scripts": {
"jshint": "jshint lib && jshint --config .jshintrc-test test",
"debug": "mocha --debug-brk",
"cover": "istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls -v && rm -rf coverage",
"report": "istanbul report cobertura",
"test": "npm run-script jshint && npm run-script cover && npm run-script report"
},
"repository": {
"type": "git",
"url": "https://github.com/jsdevel/node-express-crud.git"
},
"keywords": [
"crud",
"express"
],
"author": "Joseph Spencer",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsdevel/node-express-crud/issues"
},
"homepage": "https://github.com/jsdevel/node-express-crud",
"peerDependencies": {
"express": "*",
"async": "*"
},
"devDependencies": {
"mocha": "~1.17.1",
"should": "~3.1.3",
"istanbul": "~0.2.6",
"jshint": "~2.4.4",
"async": "*",
"coveralls": "~2.10.0",
"noport": "~1.0.1",
"request": "~2.36.0",
"express": "~4.4.3"
},
"dependencies": {
"err-handler": "0.0.0"
}
}