-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 935 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
{
"name": "nodejs-api",
"version": "1.0.0",
"description": "nodejs-api",
"main": "js/app.js",
"scripts": {
"start": "./bin/www",
"test": "nyc mocha test/*.js",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"watch": "nodemon bin/www",
"test-watch": "mocha -w js/*.js test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miltonbecker/nodejs-api.git"
},
"author": "Milton Becker Junior",
"license": "ISC",
"bugs": {
"url": "https://github.com/miltonbecker/nodejs-api/issues"
},
"homepage": "https://github.com/miltonbecker/nodejs-api#readme",
"devDependencies": {
"coveralls": "^2.13.1",
"mocha": "^3.4.1",
"nyc": "^10.3.2",
"supertest": "^3.0.0"
},
"dependencies": {
"body-parser": "^1.17.0",
"bootstrap": "^3.3.7",
"express": "^4.15.0",
"jquery": "^3.1.1",
"mongodb": "^2.2.24"
}
}