forked from maplibre/maplibre-gl-compare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.42 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": "@maplibre/maplibre-gl-compare",
"version": "0.6.0-dev",
"description": "Swipe and sync between two MapLibre maps",
"funding": "https://github.com/maplibre/maplibre-gl-js?sponsor=1",
"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/maplibre-gl-compare.css && NODE_ENV=production && browserify index.js | uglifyjs -c -m > dist/maplibre-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 example/index.js test/index.js",
"docs": "documentation build index.js --format=md > API.md"
},
"repository": {
"type": "git",
"url": "https://github.com/maplibre/maplibre-gl-compare.git"
},
"keywords": [
"maplibre",
"maplibregl",
"maps",
"gl",
"ui"
],
"license": "ISC",
"devDependencies": {
"browserify": "^17.0.0",
"budo": "^11.6.4",
"documentation": "^13.2.5",
"envify": "^4.1.0",
"eslint": "^8.9.0",
"maplibre-gl": "^2.1.6",
"smokestack": "^3.6.0",
"tap-status": "^1.0.1",
"tape": "^5.5.2",
"uglify-js": "^3.15.1"
},
"dependencies": {
"@mapbox/mapbox-gl-sync-move": "^0.3.0"
},
"peerDependencies": {
"maplibre-gl": ">=2.1.6"
}
}