forked from skeate/Leaflet.timeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.59 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
{
"name": "leaflet.timeline",
"version": "1.4.3",
"description": "Show GeoJSON objects on a timeline",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc && webpack",
"postbuild": "cp dist/leaflet.timeline.js docs/examples/leaflet.timeline.js",
"test": "jest",
"update-docs": "typedoc && touch ./docs/.nojekyll",
"prepublishOnly": "npm run build && npm run update-docs"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"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": {
"@types/jest": "^26.0.3",
"@types/leaflet": "^1.5.11",
"@types/simulant": "^0.2.0",
"@yaga/generic-geojson": "^1.0.0",
"css-loader": "^3.6.0",
"eslint": "^7.3.1",
"eslint-config-airbnb": "^18.2.0",
"jest": "^26.1.0",
"leaflet": "^1.6.0",
"simulant": "^0.2.2",
"style-loader": "^1.2.1",
"ts-jest": "^26.1.1",
"ts-loader": "^7.0.5",
"typedoc": "^0.17.7",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"peerDependencies": {
"leaflet": "^1.2.0"
},
"dependencies": {
"diesal": "^1.0.2"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"testMatch": [
"**/test/*_test.ts"
]
},
"files": [
"dist/*"
]
}