-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 998 Bytes
/
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
{
"private": true,
"name": "react-stylguidist-brand",
"version": "1.0.0",
"description": "Logo and all related brand materials",
"scripts": {
"export": "sketchtool export artboards logo.sketch",
"postexport": "npm run imagemin -- *.{svg,png}",
"imagemin": "imagemin --out-dir=. --plugin=pngquant --plugin=svgo",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{svg,png}": [
"imagemin",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/styleguidist/brand.git"
},
"keywords": ["logo", "brand"],
"author": "Andrey Okonetchnikov <andrey@okonet.ru>",
"license": "Creative Commons Attribution 4.0 International License",
"bugs": {
"url": "https://github.com/styleguidist/brand/issues"
},
"homepage": "https://github.com/styleguidist/brand#readme",
"devDependencies": {
"husky": "^0.13.3",
"imagemin-cli": "^3.0.0",
"imagemin-pngquant": "^5.0.0",
"lint-staged": "^3.4.1"
}
}