-
Notifications
You must be signed in to change notification settings - Fork 214
/
package.json
47 lines (47 loc) · 1.09 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
{
"author": "Mapbox",
"name": "@mapbox/maki",
"description": "Pixel-perfect icons for web cartography",
"version": "8.0.1",
"main": "index.js",
"browser": "browser.cjs.js",
"module": "browser.esm.js",
"scripts": {
"test": "tape test/*.test.js | tap-spec",
"build": "node scripts/make-layouts.js && node scripts/format-icons.js && node scripts/make-browser.js"
},
"devDependencies": {
"esbuild": "^0.12.25",
"eslint": "^5.6.0",
"husky": "^1.0.0",
"mkdirp": "^0.5.1",
"pify": "^4.0.1",
"prettier": "^1.14.3",
"tap-spec": "^5.0.0",
"tape": "^4.2.2",
"xml2js": "^0.4.19"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/maki"
},
"keywords": [
"map",
"icon",
"poi",
"svg"
],
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/mapbox/maki/issues"
},
"homepage": "https://github.com/mapbox/maki",
"husky": {
"hooks": {
"pre-commit": "eslint ./scripts/* && prettier --write ./scripts/* && npm run build && git add ."
}
},
"prettier": {
"singleQuote": true
}
}