-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 944 Bytes
/
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
{
"name": "restfull-api-example",
"description": "",
"version": "0.1.0",
"author": "Sergey Bolshov <[email protected]>",
"contributors": [],
"repository": {
"type": "git",
"url": "git://github.com/bigsergey/restfull-api-example.git"
},
"bugs": "http://github.com/bigsergey/restfull-api-example/issues",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": "~0.10.22"
},
"dependencies": {
"body-parser": "^1.9.0",
"express": "^4.0.0",
"lodash-node": "^3.9.3",
"mongoose": "^4.0.5",
"swaggerize-express": "^3.0.0"
},
"devDependencies": {
"tape": "^3.0.0",
"jshint": "^2.4.1",
"istanbul": "~0.2.3",
"enjoi": "~0.1.16",
"supertest": "~0.13.0"
},
"scripts": {
"test": "tape tests/*.js",
"cover": "istanbul cover tape -- tests/*.js",
"lint": "jshint -c .jshintrc index.js handlers models"
},
"main": "./server"
}