-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.62 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
{
"name": "react-map-gl-directions",
"version": "1.0.4",
"description": "React wrapper for @mapbox/mapbox-gl-directions, for use with react-map-gl",
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.m.js",
"unpkg": "dist/index.umd.js",
"scripts": {
"build": "microbundle --external react,events && cp node_modules/@mapbox/mapbox-gl-directions/dist/mapbox-gl-directions.css dist/",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write 'src/**/*.js'",
"prepublish": "npm run build"
},
"author": "Neelesh Bisht <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:neeleshbisht99/react-map-gl-directions.git"
},
"bugs": {
"url": "https://github.com/neeleshbisht99/react-map-gl-directions/issues"
},
"homepage": "https://github.com/neeleshbisht99/react-map-gl-directions",
"keywords": [
"react",
"mapbox",
"mapbox-gl",
"mapgl",
"react-map-gl",
"mapbox-gl-directions",
"directions",
"directions plugin"
],
"dependencies": {
"@mapbox/mapbox-gl-directions": "^4.0.3",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react-map-gl": ">= 4.0.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.4.0",
"eslint-plugin-react": "^7.20.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"microbundle": "^0.12.2",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run format",
"eslint",
"git add"
]
}
}