-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.5 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.5 KB
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
{
"name": "use-mapbox-gl",
"version": "2.2.2",
"description": "mapbox-gl react hook",
"author": "dqunbp",
"license": "MIT",
"repository": "dqunbp/use-mapbox-gl",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "npm run build",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build",
"release": "standard-version",
"release:patch": "npm run release -- --release-as patch",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major"
},
"files": [
"dist/**/*"
],
"keywords": [
"react",
"mapbox",
"mapbox-gl",
"use-mapbox",
"react hooks",
"react mapbox",
"use-mapbox-gl",
"react mapbox hook"
],
"peerDependencies": {
"mapbox-gl": ">= ^1.x.x || >= ^2.x.x",
"react": ">=16.8.0"
},
"devDependencies": {
"@types/mapbox-gl": "^1.11.2",
"@types/react": ">=16.9.49",
"cz-conventional-changelog": "^3.3.0",
"gh-pages": "^3.1.0",
"mapbox-gl": "^1.12.0",
"prettier": "^2.1.1",
"react": ">=16.13.1 ",
"rollup": "^2.26.11",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.2",
"standard-version": "^9.0.0",
"typescript": "^4.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}