forked from claireinez/learn-node-tdd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
41
42
{
"name": "learn-node-tdd",
"version": "1.0.0",
"description": "Learn TDD with node.js",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"codeclimate": "CODECLIMATE_REPO_TOKEN=280d6cac3e8744f75814053b484da641799003d6236e68d2c2bee199951c5132 codeclimate-test-reporter < ./coverage/lcov.info",
"test": "./node_modules/.bin/tape ./test/*",
"coverage": "istanbul cover ./node_modules/.bin/tape ./test/*"
},
"repository": {
"type": "git",
"url": "https://github.com/nofootnotes/learn-node-tdd.git"
},
"keywords": [
"tdd",
"node",
"tape"
],
"author": "nofootnotes, msmichellegar",
"license": "ISC",
"bugs": {
"url": "https://github.com/nofootnotes/learn-node-tdd/issues"
},
"homepage": "https://github.com/nofootnotes/learn-node-tdd",
"devDependencies": {
"codeclimate-test-reporter": "^0.1.1",
"istanbul": "^0.3.21",
"jshint": "^2.8.0",
"qunit-tap": "^1.5.0",
"qunitjs": "^1.19.0",
"shot": "^1.6.1",
"tape": "^4.2.0"
},
"dependencies": {
"codecov.io": "^0.1.6",
"http": "0.0.0"
}
}