-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·46 lines (46 loc) · 991 Bytes
/
package.json
File metadata and controls
executable file
·46 lines (46 loc) · 991 Bytes
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
{
"name": "local-node-server",
"version": "1.0.10",
"author": "xudeming",
"email": "xudeming208@126.com",
"description": "node本地服务器,可快速在本地搭建服务器预览本地资源",
"bin": {
"server": "bin/index.js"
},
"keywords": [
"local-node-server",
"local-node-serve",
"node-server",
"node-serve",
"nodeserver",
"nodeserve",
"node server",
"server",
"https",
"node",
"nodejs"
],
"scripts": {
"build": "babel src -d lib",
"watch": "npm run build -- -w"
},
"engines": {
"node": ">=7.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/xudeming208/local-node-server"
},
"license": "MIT",
"dependencies": {
"babel-runtime": "6.26.0",
"commander": "2.11.0",
"nodeopen": "0.0.3"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.1"
}
}