-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.27 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": "mapbox-gl-draw-rectangle-restrict-area",
"version": "0.0.0-development",
"author": "dqunbp",
"license": "MIT",
"repository": "dqunbp/mapbox-gl-draw-rectangle-restrict-area",
"main": "dist/draw-rectangle-restrict-area.cjs.js",
"dependencies": {
"@turf/area": "6.0.1"
},
"peerDependencies": {
"@mapbox/mapbox-gl-draw": "^1.1.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-inject": "4.0.1",
"@rollup/plugin-node-resolve": "7.1.1",
"cz-conventional-changelog": "3.1.0",
"gh-pages": "^2.1.1",
"rollup": "^1.27.14",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^17.1.1",
"serialize-javascript": ">=3.1.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"pretest": "npm run build",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/dist",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"files": [
"dist"
],
"keywords": [
"mapbox-gl",
"mapbox-gl-draw",
"draw",
"rectangle"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}