-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·96 lines (96 loc) · 2.92 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
{
"name": "turf-google-maps",
"version": "0.9.10",
"description": "A bridge to use Turf along with google Maps API",
"scripts": {
"test": "karma start",
"test:minified": "MINIFY=true karma start",
"minify": "npm run minify:utils && npm run minify:ig_subset && npm run minify:turfhelper",
"minify:utils": "uglifyjs dist/utils.js --source-map --mangle --compress -o dist/utils.min.js",
"minify:ig_subset": "uglifyjs dist/ig_subset.js --source-map --mangle --compress -o dist/ig_subset.min.js",
"minify:turfhelper": "uglifyjs dist/ig_turfhelper.js --source-map --mangle --compress -o dist/ig_turfhelper.min.js"
},
"repository": {
"type": "git",
"url": "git https://github.com/HuasoFoundries/turf-google-maps.git"
},
"files": [
"README.md",
"LICENSE",
"dist"
],
"keywords": [
"turf",
"google",
"maps",
"wicket"
],
"author": "[email protected]",
"license": "MIT",
"engines": {
"node": "> 8 || ^6.11.2",
"npm": "> 6 || > 5.5"
},
"bugs": {
"url": "https://github.com/HuasoFoundries/turf-google-maps/issues"
},
"homepage": "https://github.com/HuasoFoundries/turf-google-maps#readme",
"main": "dist/ig_turfhelper.js",
"browser": "dist/ig_turfhelper.min.js",
"module": "dist/ig_turfhelper.esm.js",
"jsnext:main": "dist/ig_turfhelper.esm.js",
"dependencies": {},
"devDependencies": {
"@turf/along": "^5.0.4",
"@turf/area": "^5.1.5",
"@turf/boolean-point-in-polygon": "^5.0.4",
"@turf/buffer": "^5.0.4",
"@turf/concave": "^5.0.4",
"@turf/helpers": "^5.0.4",
"@turf/kinks": "^5.0.4",
"@turf/line-intersect": "^5.1.5",
"@turf/line-slice": "^5.0.4",
"@turf/simplify": "^5.1.5",
"@turf/truncate": "^5.0.4",
"@turf/union": "^5.0.4",
"@turf/unkink-polygon": "^5.1.5",
"ajv": "^6.5.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-preset-env": "^1.7.0",
"chalk": "^2.3.0",
"documentation": "^8.1.2",
"eslint": "^5.4.0",
"karma": "^3.0.0",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1",
"karma-qunit": "^1.2.1",
"karma-systemjs": "^0.16.0",
"lodash-es": "^4.17.4",
"phantomjs-prebuilt": "^2",
"progress": "^2.0.0",
"qunitjs": "^1",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-cleanup": "^2.0.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"slash": "^1.0.0",
"uglify-js": "^3.4.8",
"wicket": "^1.3.3"
},
"jspm": {
"name": "turf-google-maps",
"main": "dist/ig_turfhelper.min.js",
"format": "amd",
"dependencies": {},
"devDependencies": {
"plugin-babel": "npm:systemjs-plugin-babel@^0.0.25"
}
}
}