forked from zeachco/stubborn-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 933 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": "stubborn-server",
"version": "0.8.1",
"description": "NodeJS Stub server for test and dev purposes",
"main": "index.js",
"scripts": {
"preversion": "npm test",
"start": "node index.js",
"test": "ava -vs && eslint ./*.js",
"test:watch": "ava -wvs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeachco/stubborn-server.git"
},
"keywords": [
"stub",
"mock",
"server",
"node",
"test"
],
"author": "Olivier Rousseau-Guyot",
"license": "ISC",
"bugs": {
"url": "https://github.com/zeachco/stubborn/issues"
},
"homepage": "https://github.com/zeachco/stubborn#readme",
"dependencies": {
"body-parser": "^1.15.1",
"chalk": "^1.1.3",
"express": "^4.13.4",
"express-http-proxy": "^0.6.0"
},
"devDependencies": {
"ava": "^0.15.2",
"eslint": "^2.10.2",
"nodemon": "^1.9.2",
"request": "^2.72.0"
}
}