-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1004 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 1004 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
{
"name": "pure-styles",
"version": "0.0.1",
"description": "The StyleSheet for PureStyles",
"scss": "src/index.scss",
"main": "css/pure.css",
"style": "css/pure.css",
"scripts": {
"build": "npm run build-clean && npm run copy && npm run build-scss && npm run build-scss-minify && npm run build-autoprefix",
"build-clean": "rimraf css",
"build-scss": "node-sass --output-style expanded --source-map true src/index.scss css/pure.css",
"build-scss-minify": "node-sass --output-style compressed --source-map true src/index.scss css/pure.min.css",
"build-autoprefix": "postcss --use autoprefixer -c postcss.json css/*.css -d css/",
"copy": "copyfiles -f src/fonts/*.* css/fonts/",
"prepublish": "npm run build",
"start": "npm run build-scss -- --watch"
},
"devDependencies": {
"autoprefixer": "^9.5.0",
"copyfiles": "^2.1.0",
"eslint-config-o2team": "^0.1.6",
"node-sass": "^4.11.0",
"postcss-cli": "^6.1.2",
"rimraf": "^2.6.3"
}
}