-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 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
{
"name": "planning-poker-engine",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"test": "mocha --recursive --timeout 20000",
"build": "npm run lint && nyc --check-coverage --lines 95 --functions 95 --branches 95 npm test",
"lint": "eslint **/*.js",
"report": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awapps/planning-poker-engine.git"
},
"keywords": [],
"author": "André Eberhardt and William Martins",
"license": "MIT",
"bugs": {
"url": "https://github.com/awapps/planning-poker-engine/issues"
},
"homepage": "https://github.com/awapps/planning-poker-engine#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"eslint": "^3.3.1",
"eslint-config-airbnb-base": "^5.0.3",
"eslint-plugin-import": "^1.14.0",
"mocha": "^3.0.2",
"nyc": "^8.1.0",
"supertest": "^2.0.0"
},
"dependencies": {
"restify": "^4.1.1",
"restify-errors": "^4.3.0"
}
}