Skip to content

Commit 7b0417c

Browse files
committed
adding .gitignore and package.json
1 parent c3f6b1a commit 7b0417c

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

package.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "nodejs-tdd-boilerplate",
3+
"version": "0.0.1",
4+
"description": "TDD boilerplate for NodeJS API apps",
5+
"author": "Bryan Donovan",
6+
"engines": {
7+
"node": ">= 0.8.11"
8+
},
9+
"main": "./index",
10+
"dependencies": {
11+
"async": "0.1.22",
12+
"cli-color": "0.1.6",
13+
"optimist" : "0.3.5",
14+
"restify": "1.4.4"
15+
},
16+
"devDependencies": {
17+
"Faker" : "git://github.com/BryanDonovan/Faker.js.git#master",
18+
"jshint": "0.9.0",
19+
"jugglingdb":
20+
"istanbul": "0.1.25",
21+
"mocha": "1.7.4",
22+
"sinon": "1.4.2"
23+
},
24+
"repository": {
25+
"type": "git",
26+
"url": "https://github.com/BryanDonovan/nodejs-tdd-boilerplate"
27+
}
28+
}

0 commit comments

Comments
 (0)