-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "planning-poker-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"test": "mocha api/**/*test.js",
"coverage": "nyc --reporter=html --reporter=text mocha api/**/*test.js",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"deploy": "gcloud app deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/intelliware-coe-web/planning-poker-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/intelliware-coe-web/planning-poker-api/issues"
},
"homepage": "https://github.com/intelliware-coe-web/planning-poker-api#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.0",
"lodash": "^4.17.11",
"mongoose": "^5.5.11",
"nconf": "^0.10.0",
"nodemon": "^1.19.0",
"sinon": "^7.3.2",
"sinon-mongoose": "^2.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.3",
"mocha": "^6.1.4",
"nyc": "^14.1.1"
}
}