-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.04 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
{
"name": "vowelcss",
"version": "0.3.0",
"description": "OOCSS and such.",
"author": "Marty Helmick",
"repository": "https://github.com/m-e-h/vowelcss",
"private": true,
"license": "GPL-2.0+",
"scripts": {
"build": "npm run compile && npm run fix && npm run minify",
"compile": "postcss index.css -o dist/vowel.css --env development",
"minify": "postcss dist/vowel.css -o dist/vowel.min.css --env production",
"fix": "stylelint dist/vowel.css --fix"
},
"devDependencies": {
"browserslist": "^4.1.1",
"cssnano": "^4.1.4",
"postcss-cli": "^6.0.0",
"postcss-discard-comments": "^4.0.1",
"postcss-discard-empty": "^4.0.1",
"postcss-extend-rule": "2.0.0",
"postcss-import": "12.0.0",
"postcss-preset-env": "^6.0.7",
"postcss-simple-vars": "5.0.1",
"prettier": "^1.14.3",
"stylelint": "^9.6.0",
"stylelint-config-standard": "^18.2.0"
},
"stylelint": {
"defaultSeverity": "warning",
"extends": "stylelint-config-standard",
"rules": {
"indentation": "tab"
}
}
}