forked from mapbox/mapbox-gl-compare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "mapbox-gl-compare",
"version": "0.2.1",
"description": "Swipe and sync between two maps",
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"start": "cp style.css example/style.css && budo example/index.js --serve example/bundle.js --dir example --live",
"build": "cp style.css dist/mapbox-gl-compare.css && NODE_ENV=production && browserify index.js | uglifyjs -c -m > dist/mapbox-gl-compare.js",
"test": "npm run lint && browserify -t envify test/index.js | smokestack -b firefox | tap-status",
"lint": "eslint --no-eslintrc -c .eslintrc index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/mapbox-gl-compare.git"
},
"keywords": [
"mapbox",
"mapboxgl",
"ui"
],
"author": "Mapbox",
"license": "ISC",
"devDependencies": {
"browserify": "^16.2.3",
"budo": "^11.6.0",
"envify": "^4.1.0",
"eslint": "^5.13.0",
"mapbox-gl": "^0.53.0",
"smokestack": "^3.6.0",
"tap-status": "^1.0.1",
"tape": "^4.9.2",
"uglify-js": "^3.4.9"
},
"dependencies": {
"@mapbox/mapbox-gl-sync-move": "^0.2.0"
},
"peerDependencies": {
"mapbox-gl": ">=0.32.1 <2.0.0"
}
}