-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
72 lines (72 loc) · 1.53 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
67
68
69
70
71
72
{
"name": "@vivaxy/here",
"version": "3.5.0",
"description": "local static server",
"homepage": "https://github.com/vivaxy/here",
"bin": {
"here": "./index.js"
},
"engines": {
"node": ">=8.0"
},
"scripts": {
"test": "mocha ./test/command.js --timeout 10000",
"release": "standard-version && git push --follow-tags && npm publish --access=public",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "https://github.com/vivaxy/here.git"
},
"bugs": {
"url": "https://github.com/vivaxy/here/issues"
},
"keywords": [
"server",
"static server",
"local server",
"vivaxy",
"tool",
"web",
"reload"
],
"author": "vivaxy",
"contributors": [
{
"name": "vivaxy",
"email": "xyxuye2007@126.com"
}
],
"license": "MIT",
"devDependencies": {
"husky": "5",
"lint-staged": "^10.0.0",
"mocha": "^8.0.0",
"pinst": "^2.1.4",
"prettier": "^2.0.0",
"standard-version": "^9.0.0"
},
"dependencies": {
"chokidar": "^3.3.1",
"commander": "^7.0.0",
"debounce": "^1.0.0",
"ip": "^1.1.0",
"koa": "^2.5.3",
"koa-compress": "^5.0.0",
"koa-router": "^10.0.0",
"log-util": "^2.3.0",
"mime": "^2.0.0",
"open": "^7.4.0",
"pem": "^1.8.0",
"pug": "^3.0.0",
"socket.io": "^3.0.0"
},
"lint-staged": {
"**/**.{js,json,md}": [
"prettier --write"
]
},
"packageManager": "npm@8.19.4"
}