forked from noncomputable/AgentMaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2 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
{
"name": "agentmaps",
"version": "2.2.2",
"description": "Geospatial agent-based modeling extension for Leaflet.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "npx webpack",
"prepublish": "npm run bundle",
"make-docs": "npm run copy-docs & npm run make-usr-docs & npm run make-dev-docs",
"copy-docs": "cp site\\docs\\DOCS.md site\\devdocs\\DEVDOCS.md & cp -r site\\docs\\help site\\devdocs\\help",
"make-usr-docs": "jsdoc src site\\docs\\DOCS.md -d site\\docs -u site\\docs\\help",
"make-dev-docs": "jsdoc src site\\devdocs\\DEVDOCS.md -d site\\devdocs -u site\\docs\\help -p",
"publish-pages": "cp README.md site\\index.md & gh-pages -d site"
},
"main": "src/index.js",
"bin": {
"featuretool": "tool/featuretool.js"
},
"repository": {
"type": "git",
"url": "https://github.com/noncomputable/AgentMaps.git"
},
"keywords": [
"agent-based",
"modeling",
"simulation",
"GIS",
"geographic",
"spatial"
],
"author": "Andrew Gregory Tsesis",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/noncomputable/AgentMaps/issues"
},
"homepage": "https://github.com/noncomputable/AgentMaps#readme",
"dependencies": {
"@turf/along": "^6.0.1",
"@turf/bearing": "^6.0.1",
"@turf/boolean-point-in-polygon": "^6.0.1",
"@turf/buffer": "^5.1.5",
"@turf/centroid": "^6.0.2",
"@turf/destination": "^6.0.1",
"@turf/helpers": "^6.1.4",
"@turf/intersect": "^6.1.3",
"@turf/length": "^6.0.2",
"@turf/line-distance": "^4.7.3",
"@turf/line-intersect": "^6.0.2",
"@turf/line-slice": "^5.1.5",
"@turf/nearest-point-on-line": "^6.0.2",
"leaflet": "^1.3.4",
"ngraph.graph": "0.0.14",
"ngraph.path": "^1.0.2",
"optimist": "^0.6.1"
},
"devDependencies": {
"@babel/preset-env": "^7.0.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.0",
"gh-pages": "^1.2.0",
"jsdoc": "^3.5.5",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
}
}