-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "world-map-geojson",
"version": "1.0.2",
"description": "世界地图 geoJSON 数据",
"main": "lib/index.js",
"scripts": {
"test": "mocha --check-leaks --compilers js:babel-core/register",
"build": "rm -rf lib && rm -rf umd && babel src --out-dir lib && npm run build-umd && npm run build-umd-min",
"build-umd": "cross-env NODE_ENV=development webpack src/index.js umd/world-map-geojson.js",
"build-umd-min": "cross-env NODE_ENV=production webpack src/index.js umd/world-map-geojson.min.js",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"mocha": "^4.0.1",
"cross-env": "^5.0.5",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.1"
},
"keywords": [
"world",
"map",
"geojson"
],
"repository": {
"type": "git",
"url": "https://github.com/twobin/world-map-geojson.git"
},
"author": "twobin",
"bugs": {
"url": "https://github.com/twobin/world-map-geojson/issues"
},
"homepage": "https://github.com/twobin/world-map-geojson",
"dependencies": {},
"files": [
"src",
"lib",
"umd",
"*.md"
],
"license": "ISC"
}