-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.48 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
{
"name": "leaflet.markerplayer",
"version": "0.3.1",
"description": "A Leaflet plug-in for animating marker with ability to get/set progress",
"main": "dist/markerplayer-src.js",
"module": "dist/markerplayer-src.esm.js",
"scripts": {
"test": "jest",
"build": "npm run rollup && npm run uglify",
"watch": "rollup -w -c build/rollup.config.mjs",
"rollup": "rollup -c build/rollup.config.mjs",
"uglify": "uglifyjs dist/markerplayer-src.js -c -m -o dist/markerplayer.js --source-map filename=dist/markerplayer.js.map --source-map content=dist/markerplayer-src.js.map --source-map url=markerplayer.js.map --comments"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0n3byt3/Leaflet.MarkerPlayer.git"
},
"keywords": [
"map",
"animation",
"marker"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/0n3byt3/Leaflet.MarkerPlayer/issues"
},
"homepage": "https://github.com/0n3byt3/Leaflet.MarkerPlayer#readme",
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.4.0",
"babel-loader": "^9.1.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"rollup": "^3.10.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"uglify-js": "^3.17.4"
},
"peerDependencies": {
"leaflet": "^1.0.0"
},
"dependencies": {
"@types/leaflet": "^1.9.0",
"tslib": "^2.5.0"
}
}