-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "@badeggg/mock-api",
"version": "1.4.1",
"description": "mock api",
"main": "./src/mock.js",
"bin": {
"mock": "./src/index.js"
},
"scripts": {
"prepublishOnly": "npm run test && npm run lint",
"snap": "tap --snapshot",
"test": "tap",
"lint": "eslint -- test/ src/ .eslintrc.js",
"lintfix": "npm run lint -- --fix"
},
"files": [
"src"
],
"author": "badeggg",
"license": "ISC",
"homepage": "https://github.com/badeggg/mock-api#readme",
"repository": {
"type": "git",
"url": "https://github.com/badeggg/mock-api"
},
"keywords": [
"mock api",
"mock http",
"mock websocket"
],
"dependencies": {
"chalk": "^2.4.2",
"commander": "^7.2.0",
"express": "^4.17.0",
"http-proxy": "^1.17.0",
"lodash": "^4.17.14",
"query-string": "^7.0.0",
"tcp-port-used": "^1.0.2",
"ws": "^8.3.0"
},
"devDependencies": {
"axios": "^0.21.2",
"eslint": "^7.24.0",
"tap": "^15.0.10"
},
"tap": {
"test-ignore": "^test/testUtils|^test/utils/watchingQuit.assist.js|^test/mock.assist.js"
}
}