-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 857 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 857 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
{
"name": "TDD_nodeJS",
"version": "0.1.0",
"description": "TDD_nodeJS",
"main": "bowling.js",
"scripts": {
"test": "node node_modules/gulp/bin/gulp test",
"coffee-test" : "node node_modules/mocha/bin/mocha --compilers coffee:coffee-script/register src/test/*.coffee -R spec -u bdd -w"
},
"repository": {
"type": "git",
"url": "https://github.com/DrHelmut/node_tdd"
},
"keywords": [
"Node.js",
"Eclipse",
"Nodeclipse"
],
"author": "Hugo Capocci",
"license": "BSD",
"readmeFilename": "README.md",
"engines": {
"node": "4.2.1"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-coffee": "^2.3.1",
"gulp-istanbul": "^0.10.2",
"gulp-mocha": "^2.1.3",
"mocha": "^2.3.3",
"should": "^7.1.0",
"winston": "^0.7.2"
},
"dependencies": {
"coffee-script": "^1.10.0"
}
}