-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "gjv",
"productName": "gjv",
"version": "1.1.0",
"description": "",
"license": "MIT",
"repository": "anandthakker/gjv",
"author": {
"name": "Anand Thakker",
"email": "[email protected]",
"url": "http://anand.codes"
},
"electronVersion": "0.36.0",
"bin": "./bin/cli.js",
"scripts": {
"test": "eslint *.js test",
"start": "electron .",
"update-styles": "./bin/get-base-styles > base-styles.json",
"build": "electron-packager . $npm_package_productName --out=dist --ignore='^/dist$' --prune --asar --all --version=$npm_package_electronVersion",
"postinstall": "echo Updating dependencies--this might take a while. && electron-rebuild -p"
},
"keywords": [
"electron-app",
"electron",
"geojson"
],
"dependencies": {
"electron-debug": "^0.5.0",
"electron-prebuilt": "^0.36.0",
"electron-rebuild": "^1.1.3",
"get-stdin": "^5.0.1",
"is-online": "^5.1.1",
"is-reachable": "^1.3.0",
"lodash.debounce": "^4.0.3",
"mapbox-file-sniff": "^0.4.3",
"mapbox-gl": "^0.14.1",
"queue-async": "^1.2.1",
"shp2json": "^1.2.0",
"tmp": "0.0.28",
"to-color": "^1.1.0",
"turf": "^2.0.2",
"turf-extent": "^1.0.4",
"yargs": "^4.1.0"
},
"devDependencies": {
"electron-packager": "^5.0.0",
"eslint": "^2.1.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.2",
"needle": "^1.0.0"
}
}