forked from mapbox/mapbox-gl-accessibility
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.63 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
{
"name": "@mapbox/mapbox-gl-accessibility",
"version": "0.0.1",
"description": "An accessibility control for Mapbox GL JS",
"main": "index.js",
"scripts": {
"start:server": "serve",
"start": "run-p start:server watch",
"watch": "watch 'npm run compile' src",
"compile": "rollup -c",
"build": "npm run compile && rm -rf _site && mkdir -p _site && cp -R examples/ _site/",
"lint": "eslint index.js",
"test": "npm run lint && browserify test/test.js | smokestack | tap-spec"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mapbox/mapbox-gl-accessibility.git"
},
"author": "Mapbox",
"license": "ISC",
"browserify": {
"transform": [
"envify",
"babelify"
]
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"babel-eslint": "^10.0.3",
"babelify": "^10.0.0",
"browserify": "^16.5.2",
"envify": "^4.1.0",
"eslint": "^4.19.1",
"mapbox-gl": "^1.12.0",
"npm-run-all": "^4.1.5",
"rollup": "^1.29.1",
"rollup-plugin-babel": "^4.3.3",
"serve": "^11.3.2",
"smokestack": "^3.6.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.1",
"watch": "^1.0.2"
},
"dependencies": {
"@turf/bbox": "^6.0.1",
"lodash": "^4.17.15",
"xtend": "^4.0.2"
},
"peerDependencies": {
"mapbox-gl": ">=0.32.1 <2.0.0"
}
}