-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·59 lines (59 loc) · 1.24 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
{
"name": "vale-server-ii",
"version": "1.1.1",
"description": "A Server framework",
"main": "dist/lib/server.js",
"author": "V. H.",
"devDependencies": {
"@types/fs-extra": "^5.1.0",
"@types/node": "^8.10.48",
"tslib": "^1.9.3",
"typescript": "^3.4.5"
},
"directories": {
"lib": "lib"
},
"typings": "lib/typings/lib/server.d.ts",
"dependencies": {
"fs-extra": "^7.0.1"
},
"scripts": {
"test": "node test/index.js || npm test",
"build": "tsc -w",
"debug": "node --inspect-brk=9229 test/index.js || npm debug"
},
"keywords": [
"server",
"middleware",
"static"
],
"engines": {
"node": ">=10.10.0"
},
"license": "ISC",
"homepage": "https://github.com/ValentinHacker/Server-II#README.md",
"bugs": {
"url": "https://github.com/ValentinHacker/Server-II/issues",
"email": "[email protected]"
},
"contributors": [],
"files": [
"*"
],
"bin": {},
"man": [],
"repository": {
"type": "git",
"url": "git://github.com/ValentinHacker/Server-II.git",
"directory": "./"
},
"config": {
"port": 1234
},
"peerDependencies": {},
"optionalDependencies": {},
"os": [],
"cpu": [],
"publishConfig": {},
"bundleDependencies": []
}