-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 891 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 891 Bytes
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": "tdd_node",
"version": "0.0.1",
"description": "Mocha | Chai",
"main": "index.js",
"scripts": {
"test": "mocha test/**/*.spec.js",
"test-watch": "nodemon --exec 'npm test'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thisisbrad/tdd_node.git"
},
"author": "Brad Beltowski",
"license": "ISC",
"bugs": {
"url": "https://github.com/thisisbrad/tdd_node/issues"
},
"homepage": "https://github.com/thisisbrad/tdd_node#readme",
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"co": "^4.6.0",
"co-fs": "^1.2.0",
"co-mocha": "^1.2.0",
"koa": "^2.0.1",
"koa-router": "^5.4.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"supertest": "^3.0.0"
},
"directories": {
"test": "test"
},
"keywords": [
"TDD",
"Mocha",
"Chai",
"ES6",
"Generators"
]
}