-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
74 lines (74 loc) · 2.19 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
74
{
"name": "plannerjs",
"version": "0.4.2",
"description": "The JavaScript framework for journey planning.",
"main": "lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/openplannerteam/planner.js.git"
},
"bugs": {
"url": "https://github.com/openplannerteam/planner.js/issues"
},
"browser": "dist/bundle.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"debug": "ndb node lib/demo.cli.js --debug",
"build": "tsc",
"prepublish": "npm run build",
"browser": "npm run webpack",
"lint": "./node_modules/tslint/bin/tslint --project .",
"webpack": "webpack --config webpack.config.js --mode=production",
"webpack-stats": "npm run webpack -- --display-modules --json > stats.json",
"typedoc": "typedoc --options typedoc.config.js",
"doc-bundle": "npm run browser && cp dist/bundle.js docs/js/planner-latest.js && cp dist/bundle.js.map docs/js/bundle.js.map",
"doc": "npm run typedoc && npm run doc-bundle",
"start": "webpack-dev-server --open"
},
"dependencies": {
"@turf/turf": "^5.1.6",
"@types/concaveman": "^1.1.3",
"@types/node": "^12.19.9",
"asynciterator": "^2.0.1",
"asynciterator-promiseproxy": "^2.1.0",
"concaveman": "^1.2.0",
"cross-fetch": "^3.0.6",
"d3-delaunay": "^4.1.5",
"haversine": "^1.1.1",
"inversify": "^5.0.5",
"isomorphic-fetch": "^2.2.1",
"ldfetch": "^1.1.2",
"node-dijkstra": "^2.5.0",
"proj4": "^2.6.3",
"rbush": "^3.0.1",
"reflect-metadata": "^0.1.13",
"tiles-in-bbox": "^1.0.2",
"tinyqueue": "^2.0.2",
"uri-templates": "^0.2.0",
"uritemplate": "^0.3.4",
"wellknown": "^0.5.0"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"@types/haversine": "^1.1.4",
"@types/jest": "^23.3.14",
"@types/rdf-js": "^1.0.1",
"jest": "^24.9.0",
"pre-commit": "^1.2.2",
"prettier": "1.14.3",
"source-map-support": "^0.5.19",
"ts-jest": "<23.10.0",
"ts-loader": "^5.4.5",
"tslint": "^5.20.1",
"typedoc": "^0.15.8",
"typescript": "^3.9.7",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"sideEffects": false
}