-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
73 lines (73 loc) · 1.86 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
67
68
69
70
71
72
73
{
"name": "leaflet.timeline",
"version": "1.6.0",
"description": "Show GeoJSON objects on a timeline",
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c",
"postbuild": "cp dist/leaflet.timeline.js docs/examples/leaflet.timeline.js",
"test": "jest",
"prepublishOnly": "npm run build"
},
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"node": "./dist/index.cjs",
"default": "./dist/leaflet.timeline.js"
},
"repository": {
"type": "git",
"url": "https://github.com/skeate/Leaflet.timeline.git"
},
"keywords": [
"leaflet",
"timeline",
"playback",
"time",
"animate"
],
"author": "Jonathan Skeate",
"license": "ISC",
"bugs": {
"url": "https://github.com/skeate/Leaflet.timeline/issues"
},
"homepage": "https://github.com/skeate/Leaflet.timeline",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/geojson": "7946.0.14",
"@types/jest": "^29.5.12",
"@types/leaflet": "^1.5.11",
"@types/simulant": "^0.2.0",
"css-loader": "^6.10.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"leaflet": "^1.6.0",
"rollup": "^4.9.6",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-visualizer": "^5.12.0",
"simulant": "^0.2.2",
"style-loader": "^3.3.4",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"leaflet": "^1.2.0"
},
"dependencies": {
"diesal": "^1.0.2"
},
"files": [
"dist/*"
]
}