-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
51 lines (51 loc) · 1.09 KB
/
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
42
43
44
45
46
47
48
49
50
51
{
"name": "stubborn-server",
"version": "2.0.1",
"description": "NodeJS Stub server for test and dev purposes",
"main": "index.js",
"engines": {
"node": ">=10"
},
"files": [
"index.js",
"server"
],
"scripts": {
"preversion": "npm test",
"start": "node index.js",
"test": "ava -vs tests/* && eslint ./*.js server/*.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": "GPL-3.0",
"bugs": {
"url": "https://github.com/zeachco/stubborn/issues"
},
"homepage": "https://github.com/zeachco/stubborn#readme",
"dependencies": {
"body-parser": "^1.19.0",
"chalk": "^3.0.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-http-proxy": "^1.6.0"
},
"devDependencies": {
"ava": "^2.4.0",
"eslint": "^6.8.0",
"get-port": "^5.1.1",
"got": "^10.6.0",
"nodemon": "^1.19.4"
}
}