-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 893 Bytes
/
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
{
"name": "tdd-and-mocking-in-node-example",
"version": "1.0.0",
"description": "Example repo for Nodebp meetup talk September 2014: TDD and Mocking in Node.js",
"main": "index.js",
"scripts": {
"test": "mocha index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/EggDice/tdd-and-mocking-in-node-example.git"
},
"keywords": [
"talk",
"testing",
"mock",
"dummy",
"stub",
"fake",
"spy"
],
"author": "Tamas Kokeny <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EggDice/tdd-and-mocking-in-node-example/issues"
},
"homepage": "https://github.com/EggDice/tdd-and-mocking-in-node-example",
"dependencies": {
"chai": "^1.9.1",
"express": "^4.9.5",
"express-session": "^1.8.2",
"mocha": "^1.21.4",
"sinon": "^1.10.3",
"supertest": "^0.13.0"
}
}