-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.6 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
{
"name": "radius-map",
"version": "0.2.1",
"description": "preconfigured `leaflet` map using a circle from `leaflet-draw` for implementing a within radius search on a map.",
"main": "dist/radius-map.cjs.js",
"module": "dist/radius-map.esm.js",
"browser": "dist/radius-map.umd.js",
"scripts": {
"build": "cross-env BABEL_ENV=build NODE_ENV=production rollup -c rollup.config.js",
"start": "cross-env BABEL_ENV=build rollup -w -c rollup.config.dev.js",
"doc": "npm-run-all -s doc:*",
"doc:clean": "rimraf docs/*",
"doc:html": "documentation build ./src/index.js -f html -o docs",
"preversion": "npm run build",
"version": "npm run doc && git add -A docs",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run build",
"postpublish": "rimraf dist/"
},
"files": [
"/dist"
],
"peerDependencies": {
"leaflet": "^1.5.1",
"leaflet-draw": "^1.0.4"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"core-js": "^3.3.3",
"cross-env": "^6.0.0",
"documentation": "^12.1.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"rollup": "^1.10.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/puiutucutu/radius-map.git"
},
"author": "puiutucutu"
}