forked from bameyrick/flexbox-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 708 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 708 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
{
"name": "flexbox-grid",
"version": "1.0.1",
"main": "index.js",
"author": "Ben Meyrick <bameyrick@gmail.com>",
"license": "MIT",
"style": "./src/_index.scss",
"scripts": {
"lint-staged": "lint-staged",
"precommit": "lint-staged"
},
"lint-staged": {
"*.scss": ["prettier --print-width 140 --use-tabs --single-quote --parser postcss --write", "git add"],
"*.json": ["prettier --print-width 140 --use-tabs --single-quote --trailing-comma es5 --parser json --write", "git add"]
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"prettier": "^1.11.1",
"sass-lint": "^1.12.1"
},
"dependencies": {
"sass-helpers": "https://github.com/bameyrick/sass-helpers"
}
}