-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.91 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
{
"name": "inverted-polygons",
"version": "1.0.1",
"description": "A helper util for returning inverted polygons",
"main": "src/util/invert-polygons.js",
"bin": {
"invertedPolygons": "bin/inverted-polygons"
},
"scripts": {
"start": "react-scripts start",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"build": "react-scripts build",
"test": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tristen/inverted-polygons.git"
},
"keywords": [
"GeoJSON",
"donuts",
"inverted",
"polygon"
],
"author": "tristen",
"license": "ISC",
"bugs": {
"url": "https://github.com/tristen/inverted-polygons/issues"
},
"homepage": "http://tristen.ca/inverted-polygons",
"dependencies": {
"@mapbox/geojson-rewind": "^0.5.1",
"@turf/bbox": "^6.0.1",
"file-saver": "^1.3.8",
"geojson-flatten": "^1.0.4",
"react": "^16.8.6",
"react-dnd": "^7.4.5",
"react-dnd-html5-backend": "^7.4.4",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@mapbox/eslint-config-mapbox": "^1.2.1",
"babel-eslint": "^10.0.1",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.13.0",
"gh-pages": "^2.0.1",
"husky": "^2.2.0",
"lint-staged": "^8.1.6",
"prettier": "^1.17.0",
"react-scripts": "^3.0.0"
},
"lint-staged": {
"**/*.js": [
"eslint",
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 100,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}