-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.07 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": "node-js-getting-started",
"version": "0.1.5",
"description": "A sample Node.js app using Express 4",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/tape ./tests/back-end/*",
"api-test": "./node_modules/.bin/tape ./tests/back-end/*",
"coverage": "istanbul cover -x **/tests/** tape ./tests/back-end/*",
"start": "node js/index.js",
"codeclimate": "CODECLIMATE_REPO_TOKEN=467a1f1abf5d146cc384cf7567718ac7ab13f51f47f63dfb7798b5b1ba43136a codeclimate-test-reporter < ./coverage/lcov.info"
},
"dependencies": {
"codecov.io": "^0.1.6",
"env2": "^2.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/heroku/node-js-getting-started"
},
"keywords": [
"node",
"heroku"
],
"license": "MIT",
"devDependencies": {
"codeclimate-test-reporter": "^0.1.1",
"codecov.io": "^0.1.6",
"env2": "^2.0.2",
"istanbul": "^0.3.21",
"nodemon": "^1.7.1",
"pre-commit": "^1.1.1",
"shot": "^1.6.1",
"tape": "^4.2.0"
},
"pre-commit": [
"coverage",
"codeclimate"
]
}