forked from maputnik/osm-liberty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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
{
"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 | ./node_modules/.bin/sponge 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": {
"@beyondtracks/spritezero-cli": "^2.2.0",
"@mapbox/mapbox-gl-style-spec": "^13.15.0",
"husky": "^8.0.3",
"sponge": "^0.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run validate && npm run format && git add style.json"
}
}
}