-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 929 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
37
38
39
40
41
{
"name": "rawhide",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "node index.js",
"preinstall": "node bin/rawhide unlink",
"postinstall": "node bin/rawhide link"
},
"author": "Joram Ruitenschild",
"repository": {
"type": "git",
"url": "https://github.com/JrSchild/rawhide.git"
},
"bin": {
"rawhide": "./bin/rawhide"
},
"engines": {
"node": ">=4.1"
},
"license": "ISC",
"description": "A highly extensible, Node.js powered database testing framework.",
"dependencies": {
"bluebird": "^3.0.5",
"bytes": "^2.2.0",
"express": "^4.13.3",
"inquirer": "^0.11.0",
"lodash": "^3.10.1",
"mongodb": "^2.0.49",
"node-fs-extra": "^0.8.1",
"q": "^1.4.1",
"socket.io": "^1.3.7",
"yargs": "^3.30.0"
},
"devDependencies": {
"benchmark": "^1.0.0",
"chai": "^3.4.1",
"microtime": "^2.0.0"
}
}