-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
44 lines (44 loc) · 1.36 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
{
"name": "segnet",
"version": "1.0.0",
"description": "(Adapted from http://mi.eng.cam.ac.uk/projects/segnet/tutorial.html) ## Batch Normalization",
"main": "class-weights.js",
"scripts": {
"start-viewer": "budo --dir results-viewer/dist results-viewer/view.js:view.js",
"bundle-viewer": "browserify results-viewer/view.js > results-viewer/dist/view.js",
"bundle-demo": "browserify segnet/demo.js > segnet/static/demo.js",
"build-docker": "docker build -t developmentseed/skynet-train:gpu . -f docker/skynet-train/Dockerfile.gpu"
},
"keywords": [],
"author": "Anand Thakker <[email protected]> (http://anandthakker.net/)",
"license": "ISC",
"dependencies": {
"choo": "^2.2.0",
"fs-extra": "^0.30.0",
"geojson-flatten": "^0.2.1",
"geojson-normalize": "0.0.1",
"lodash": "^4.17.2",
"mapbox-gl": "^0.28.0",
"mapbox-gl-styles": "^2.0.2",
"minimist": "^1.2.0",
"polyspine": "^1.0.0",
"tile-cover": "^3.0.1",
"tilebelt": "^1.0.1",
"turf-line-distance": "^3.0.12",
"turf-simplify": "^3.0.12"
},
"devDependencies": {
"browserify": "^13.0.1",
"budo": "^8.4.0",
"es2020": "^1.1.6",
"eslint": "^3.2.2",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^2.0.0"
},
"browserify": {
"transform": [
"es2020"
]
}
}