-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.37 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "pixss",
"version": "2.1.0",
"description": "A minimal css library for quick prototyping",
"main": "dist/styles/pixss.min.css",
"devDependencies": {
"autoprefixer": "^9.8.6",
"banner-cli": "^0.14.1",
"browser-sync": "^2.26.14",
"classname": "0.0.0",
"copyfiles": "^2.4.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss-cli": "^7.1.2",
"prettier-standard": "^16.4.1",
"rimraf": "^3.0.2",
"rollup": "^2.39.0",
"sass-lint": "^1.12.1",
"sirv-cli": "^1.0.11"
},
"dependencies": {
"vuepress": "^1.8.1"
},
"scripts": {
"docs:build": "vuepress build docs dist/docs",
"docs:dev": "vuepress dev docs",
"copy-ghpages": "copyfiles dist/* dist/**/**/* gh-pages/",
"autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers \"last 1 versions\" -r dist/styles/*.css",
"banner": "banner-cli dist/styles/*.css",
"lint": "prettier-standard --check && sass-lint --verbose --no-exit",
"sass": "node_modules/node-sass/bin/node-sass --output-style expanded src/styles/pixss.sass dist/styles/pixss.css && node-sass --output-style compressed src/styles/pixss.sass dist/styles/pixss.min.css",
"build:sass": "rimraf dist/styles && run-s sass autoprefixer banner",
"build": "run-p build:sass",
"watch:sass": "onchange src/styles -- run-p build:sass",
"dev": "run-p watch:sass",
"start": "sirv dist",
"preexamples": "copyfiles dist/styles/* examples/",
"examples": "sirv examples"
},
"files": [
"dist/styles"
],
"prettier": {
"jsxSingleQuote": false,
"trailingComma": "all"
},
"lint-staged": {
"**/*": [
"prettier-standard --format",
"git add"
]
},
"keywords": [
"css",
"scss",
"sass",
"stylesheet",
"minimalist"
],
"author": "Xun Zhou <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vikbert/pixss.git"
},
"bugs": {
"url": "https://github.com/vikbert/pixss/issues"
},
"homepage": "https://vikbert.github.io/pixss"
}