-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.05 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.05 KB
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
{
"name": "Water",
"version": "1.0.0",
"description": "Just another CSS methodology and library for UI components",
"author": "Chris Roper",
"license": "MIT",
"scripts": {
"lint": "yarn lint:stylelint",
"lint:stylelint": "stylelint 'styles/**/*.scss' --cache --syntax scss; exit 0",
"build": "yarn lint && yarn build:sass && yarn build:mediaqueries",
"build:sass": "node-sass --output-style expanded styles/imports.scss build/css/styles.css",
"build:mediaqueries": "mqpacker -s build/css/styles.css > build/css/styles-mq.css",
"dist": "yarn build && yarn dist:purge",
"dist:purge": "purgecss --css build/css/styles-mq.css --content templates/**/*.html --out build/css/"
},
"dependencies": {
"css-mqpacker": "^7.0.0",
"prettier": "^1.16.3",
"prettier-stylelint": "^0.4.2",
"purgecss": "^1.1.0",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^2.0.0",
"stylelint-scss": "^3.5.1"
},
"devDependencies": {
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.2"
}
}