-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 879 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 879 Bytes
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
{
"name": "reasonconf-brand",
"version": "1.0.0",
"description": "Logos & media materials of ReasonConf",
"main": "index.js",
"scripts": {
"minify":
"imagemin --out-dir=. --plugin=pngquant --plugin=svgo --plugin=jpegtran",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{svg,png,jpg}": ["minify", "git add"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReasonVienna/reasonconf-brand.git"
},
"author": "Andrey Okonetchnikov <andrey@okonet.ru>",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/ReasonVienna/reasonconf-brand/issues"
},
"homepage": "https://github.com/ReasonVienna/reasonconf-brand#readme",
"devDependencies": {
"husky": "^0.14.3",
"imagemin-cli": "^3.0.0",
"imagemin-jpegtran": "^5.0.2",
"imagemin-pngquant": "^5.0.1",
"lint-staged": "^6.1.0"
}
}