-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 KB
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
{
"name": "map-server-cli",
"version": "1.0.0",
"description": "爬图并且创建微型地图服务",
"main": "index.js",
"scripts": {
"build:watch": "rollup -c rollup.config.js --watch",
"build": "rollup -c rollup.config.js",
"start": "npm run build && node lib/index.js ",
"serve": "node src/app.js"
},
"repository": {
"type": "git",
"url": "ssh://git@10.0.225.88:30022/tchen/map-server-cli.git"
},
"keywords": [
"map",
"tilescache",
"server"
],
"author": "tchen",
"license": "ISC",
"dependencies": {
"@babel/register": "^7.4.4",
"@mapbox/tile-cover": "^3.0.2",
"@turf/turf": "^5.1.6",
"async": "^2.6.3",
"chalk": "^4.1.0",
"dateformat": "^3.0.3",
"http-server": "^0.11.1",
"humanize-duration": "^3.23.1",
"node-fetch": "^2.6.0",
"numeral": "^2.0.6",
"progress": "^2.0.3",
"yargs": "^15.0.2"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"builtin-modules": "^3.1.0",
"core-js": "^3.6.5",
"rollup": "^2.1.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.1"
}
}