-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "svg-to-geojson",
"version": "1.0.0",
"description": "Convert SVG to GeoJson",
"author": "Dave Cranwell (@davecranwell)",
"repository": "git://github.com/davecranwell/svg-to-geojson.git",
"main": "./dist/svg-to-geojson.min.js",
"jsnext:main": "./source/index",
"keywords": [
"svg",
"convert",
"coordinates",
"points",
"geo",
"geojson",
"json"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "6.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-external-helpers": "6.18.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "6.9.0",
"d3-scale": "^1.0.0",
"eslint": "2.12.0",
"eslint-config-airbnb-base": "3.0.1",
"eslint-plugin-import": "1.8.1",
"rollup": "0.33.0",
"rollup-plugin-babel": "2.6.1",
"rollup-plugin-commonjs": "3.1.0",
"rollup-plugin-node-resolve": "2.0.0",
"rollup-plugin-uglify": "1.0.1",
"uglify-js": "2.7.0"
},
"scripts": {
"install": "rm -rf node_modules/path-data-polyfill && git clone https://github.com/jarek-foksa/path-data-polyfill.js node_modules/path-data-polyfill",
"build": "rollup -c",
"prepublish": "npm run build"
},
"babel": {
"presets": [
"es2015-rollup"
]
}
}