-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "@adrisolid/mapbox-gl-layers-control",
"version": "0.1.5",
"homepage": "https://github.com/AdriSolid/mapbox-gl-layers-control#readme",
"description": "Mapbox GL JS Layers Control",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:AdriSolid/mapbox-gl-layers-control.git"
},
"scripts": {
"build": "tsc",
"lint": "prettier -c './lib/**/*.ts'",
"lint:fix": "prettier --write './lib/**/*.ts'",
"deploy": "git subtree push --prefix examples/with-react origin gh-pages -d build"
},
"keywords": [
"mapbox",
"mapbox-gl-js",
"layers-control"
],
"author": "Adrián Pérez Beneito",
"license": "MIT",
"bugs": {
"url": "https://github.com/AdriSolid/mapbox-gl-layers-control/issues"
},
"dependencies": {
"mapbox-gl": "^1.11.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:fix"
}
},
"devDependencies": {
"@types/mapbox-gl": "^1.9.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"prettier": "^2.1.1",
"typescript": "^3.1.3"
}
}