forked from Notalib/Dori
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 826 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
{
"name": "Testhandler",
"version": "1.1.0",
"description": "Webserver that handles running various blackbox tests, exposing them through http.",
"scripts": {
"start": "node js/index.js",
"test": "node_modules/mocha/bin/mocha --ui tdd --recursive js/test",
"tdd": "node_modules/mocha/bin/mocha --ui tdd --recursive js/test --watch"
},
"author": "Michael Zedeler <michael@zedeler.dk>",
"license": "ISC",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0",
"mocha-jshint": "2.3.1",
"supertest": "^3.0.0"
},
"dependencies": {
"express": "^4.15.2",
"fs-extra": "^2.1.2",
"glob": "^7.1.1",
"minimist": "^1.2.0",
"morgan": "^1.8.1",
"shelljs": "^0.7.7",
"sinon": "^2.1.0",
"sprintf": "^0.1.5",
"tar-fs": "^1.15.2",
"tmp": "0.0.31"
}
}