-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.3 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "simplify-vw",
"version": "0.0.1",
"description": "Simplifies GeoJson Geometries using Visvalingan Whyatt algorithm",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HuasoFoundries/simplify-vw.git"
},
"keywords": [
"geojson",
"simplification",
"visvalingam",
"whyatt"
],
"author": "amenadiel@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/HuasoFoundries/simplify-vw/issues"
},
"homepage": "https://github.com/HuasoFoundries/simplify-vw#readme",
"dependencies": {
"@turf/area": "^4.7.3",
"@turf/helpers": "^5.0.1"
},
"devDependencies": {
"jspm": "^0.17.0-beta.47",
"serve": "^6.3.1"
},
"jspm": {
"registry": "jspm",
"name": "simplify-vw",
"main": "index.js",
"format": "amd",
"directories": {
"lib": "dist"
},
"dependencies": {
"@turf/clone": "npm:@turf/clone@^5.0.4",
"@turf/meta": "npm:@turf/meta@^5.0.4",
"@turf/simplify": "npm:@turf/simplify@^5.0.4",
"lodash": "npm:lodash@3"
},
"devDependencies": {
"@turf/along": "npm:@turf/along@^4.6.0",
"@turf/area": "npm:@turf/area@^4.7.3",
"@turf/buffer": "npm:@turf/buffer@^4.6.1",
"@turf/concave": "npm:@turf/concave@^4.6.0",
"@turf/helpers": "npm:@turf/helpers@^4.6.0",
"@turf/inside": "npm:@turf/inside@^4.6.0",
"@turf/kinks": "npm:@turf/kinks@^4.6.0",
"@turf/line-intersect": "npm:@turf/line-intersect@^4.6.0",
"@turf/line-slice": "npm:@turf/line-slice@^4.6.0",
"@turf/truncate": "npm:@turf/truncate@^4.6.0",
"@turf/union": "npm:@turf/union@^4.6.0",
"@turf/unkink-polygon": "npm:@turf/unkink-polygon@^4.6.0",
"assert": "npm:jspm-nodelibs-assert@^0.2.0",
"buffer": "npm:jspm-nodelibs-buffer@^0.2.0",
"child_process": "npm:jspm-nodelibs-child_process@^0.2.0",
"constants": "npm:jspm-nodelibs-constants@^0.2.0",
"crypto": "npm:jspm-nodelibs-crypto@^0.2.0",
"events": "npm:jspm-nodelibs-events@^0.2.0",
"lodash-es": "npm:lodash-es@^4.14.2",
"os": "npm:jspm-nodelibs-os@^0.2.0",
"path": "npm:jspm-nodelibs-path@^0.2.0",
"process": "npm:jspm-nodelibs-process@^0.2.0",
"stream": "npm:jspm-nodelibs-stream@^0.2.0",
"string_decoder": "npm:jspm-nodelibs-string_decoder@^0.2.0",
"util": "npm:jspm-nodelibs-util@^0.2.0",
"vm": "npm:jspm-nodelibs-vm@^0.2.0"
},
"peerDependencies": {
"fs": "npm:jspm-nodelibs-fs@^0.2.0",
"plugin-babel": "npm:systemjs-plugin-babel@^0.0.25"
},
"overrides": {
"npm:debug@2.6.8": {
"main": "src/browser.js",
"jspmNodeConversion": false,
"format": "cjs",
"map": {
"./src/browser.js": {
"node": "./src/node.js"
},
"./node.js": {
"browser": "./src/browser.js"
},
"fs": "@node/fs",
"net": "@node/net",
"tty": "@node/tty",
"util": "@node/util"
}
},
"npm:inherits@2.0.3": {
"ignore": [
"test.js"
]
},
"npm:pbkdf2@3.0.13": {
"main": "browser.js"
},
"npm:safe-buffer@5.1.1": {
"browser": "index.js"
}
}
}
}