-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.93 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
{
"name": "svg-plotter",
"version": "1.0.0",
"description": "Convert SVG files to GeoJSON",
"main": "dist/index.js",
"bin": {
"svg-plotter": "./bin/svg-plotter.js"
},
"scripts": {
"postinstall": "husky install",
"precommit": "NODE_ENV=production npm run lint && npm test && npm run build && git add dist/* docs/* demo/*",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"build": "tsc && npm run build:docs && npm run build:demo",
"build:docs": "typedoc ./src/index.ts",
"build:demo": "./node_modules/.bin/browserify ./demo/main.js -o ./demo/main-bundle.js",
"test": "ts-mocha -p tsconfig.json tests/*.spec.ts --recursive",
"lint": "eslint 'src/**/*.{js,ts}' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LiamAttClarke/svg-plotter.git"
},
"author": "Liam Atticus Clarke",
"license": "MIT",
"bugs": {
"url": "https://github.com/LiamAttClarke/svg-plotter/issues"
},
"homepage": "https://github.com/LiamAttClarke/svg-plotter#readme",
"dependencies": {
"@turf/bbox": "^6.3.0",
"commander": "^7.0.0",
"file-saver": "^2.0.5",
"mapbox-gl": "^2.1.1",
"projections": "^1.0.0",
"svg-path-parser": "^1.1.0",
"svgson": "^4.1.0",
"ya-svg-transform": "0.0.3"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/chai-roughly": "^1.0.1",
"@types/geojson": "^7946.0.7",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.27",
"@types/svg-path-parser": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"browserify": "^17.0.0",
"chai": "^4.3.0",
"chai-roughly": "^1.0.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"geojson-validation": "^1.0.2",
"husky": "^5.0.9",
"mocha": "^8.3.0",
"pinst": "^2.1.4",
"ts-mocha": "^8.0.0",
"typedoc": "^0.20.24",
"typescript": "^4.1.5"
}
}