-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.64 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "delay-proxy",
"version": "0.2.1",
"description": "Development server to simulate slow bandwidth",
"scripts": {
"dev": "npx nodemon ./bin/delay-proxy.js",
"lint": "npx eslint .",
"generate-changelog": "./bin/generate-changelog.js",
"test": "echo 'No Unit tests yet'",
"test:precommit": "npm test",
"pretty": "npx prettier --write '**/*.{js,jsx,json,css,scss}'",
"precommit": "lint-staged && npm run lint && npm run test:precommit"
},
"files": [
"bin"
],
"bin": {
"delay-proxy": "./bin/delay-proxy.js"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/topheman/delay-proxy.git"
},
"keywords": [
"proxy",
"delay",
"timeout",
"serve"
],
"author": "Christophe Rosset <[email protected]> (http://labs.topheman.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/topheman/delay-proxy/issues"
},
"lint-staged": {
"**/*.{js,jsx,json,css,scss}": [
"prettier --write",
"git add"
]
},
"homepage": "https://github.com/topheman/delay-proxy#readme",
"devDependencies": {
"commander": "^2.17.1",
"cross-env": "^5.2.0",
"eslint": "^5.5.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"generate-changelog": "^1.7.1",
"github-url-from-git": "^1.5.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"nodemon": "^1.18.4",
"prettier": "1.14.2"
},
"dependencies": {
"chalk": "^2.4.1",
"minimist": "^1.2.0",
"my-local-ip": "^1.0.0",
"request": "^2.88.0"
},
"engines": {
"node": ">=8.3"
}
}