-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
66 lines (66 loc) · 1.73 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "leaflet-path-drag",
"type": "module",
"version": "1.9.5",
"description": "Drag functionality for Leaflet vector layers",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"browser": "dist/index.js",
"unpkg": "dist/index.js",
"jsdelivr": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"src/**/*.js"
],
"scripts": {
"test": "browserify --transform [ babelify --presets [ es2015 ] ] ./test/*.test.js | tape-run --render='tap-spec' | tap-status",
"start": "vite -c example/vite.config.ts",
"lint": "eslint ./src/*.mjs",
"docs": "vite build -c example/vite.config.ts",
"build": "npm run lint && vite build",
"release": "git push origin master && git checkout gh-pages && git merge master && git push origin gh-pages && git checkout master && npm publish"
},
"keywords": [
"leaflet",
"path",
"polyline",
"drag",
"polygon"
],
"author": "Alexander Milevski <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/w8r/Leaflet.Path.Drag.git"
},
"bugs": {
"url": "https://github.com/w8r/Leaflet.Path.Drag/issues"
},
"prettier": {
"singleQuote": true
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^14.4.0",
"eslint": "^6.8.0",
"faucet": "0.0.1",
"leaflet": "^1.9.4",
"prosthetic-hand": "^1.3.1",
"smokestack": "^3.6.0",
"tap-spec": "^5.0.0",
"tap-status": "^1.0.1",
"tape": "^5.5.3",
"tape-run": "^10.0.0",
"uglify-js": "^3.0.21",
"vite": "^5.1.3"
}
}