-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
33 lines (33 loc) · 1.06 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
{
"name": "leaflet-tooltip-layout",
"version": "0.1.2",
"description": "Avoid tooltip overlapping and make users find out the relationship between each tooltip and marker easily",
"private": false,
"main": "./lib/index.js",
"scripts": {
"serve": "cross-env NODE_ENV=development parcel --out-dir ./dist/demo/ ./example/index.html",
"build": "npm-run-all -s clean build:demo",
"build:demo": "cross-env NODE_ENV=production parcel build ./example/index.html --out-dir ./dist/demo/ --public-url /overlapping-avoided-tooltip",
"clean": "rimraf ./dist/*"
},
"peerDependencies": {
"leaflet": "^1.3.4"
},
"devDependencies": {
"@types/leaflet": "^1.2.11",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.2.0",
"eslint": "^5.6.0",
"npm-run-all": "^4.1.3",
"parcel-bundler": "^1.9.7",
"prettier": "^1.14.2",
"rimraf": "^2.6.2"
},
"dependencies": {
"leaflet": "^1.3.4"
}
}