forked from maputnik/osm-liberty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "osm-liberty",
"version": "0.1.0",
"description": "A free Mapbox GL basemap style for everyone",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"validate": "./node_modules/.bin/gl-style-validate style.json",
"diff": "bash -c 'diff <(./node_modules/.bin/gl-style-format style.json) style.json'",
"format": "./node_modules/.bin/gl-style-format style.json > temp_style.json && mv temp_style.json style.json",
"build_sprites": "bash ./build_sprites.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maputnik/osm-liberty.git"
},
"keywords": [
"maps",
"cartography",
"mapbox-gl-js",
"mapbox-gl"
],
"author": "",
"bugs": {
"url": "https://github.com/maputnik/osm-liberty/issues"
},
"homepage": "https://github.com/maputnik/osm-liberty#readme",
"devDependencies": {
"@maplibre/maplibre-gl-style-spec": "^20.0.0",
"husky": "^8.0.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run validate && npm run format && git add style.json"
}
}
}