-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.09 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
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
74
75
76
77
78
{
"name": "system.css",
"version": "0.5.3",
"style": "styles.css",
"description": "A minimal CSS boilerplate based on PostCSS, postcss-grid-system, postcss-grid-fluid, postcss-typescale, postcss-button",
"keywords": [
"postcss",
"css",
"cssnext",
"postcss-grid-system, postcss-grid-fluid, postcss-typescale, postcss-button",
"normalize.css"
],
"author": "Francois Romain <francoisromain@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/francoisromain/system.css.git"
},
"bugs": {
"url": "https://github.com/francoisromain/system.css/issues"
},
"scripts": {
"test": "stylelint src/*.css",
"build": "postcss src/styles.css -o dist/styles.css",
"dev": "onchange 'index.html' 'src/**/*.*' -- npm run build & livereload"
},
"devDependencies": {
"livereload": "^0.8.0",
"onchange": "^6.0.0",
"postcss": "^7.0.17",
"postcss-button": "^0.3.17",
"postcss-cli": "^6.1.2",
"postcss-color-function": "^4.1.0",
"postcss-grid-fluid": "^0.3.4",
"postcss-grid-system": "0.4.16",
"postcss-inline-svg": "^3.1.1",
"postcss-preset-env": "^6.6.0",
"postcss-typescale": "^0.2.3",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0"
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"at-rule-no-unknown": null,
"declaration-colon-newline-after": null,
"value-list-comma-newline-after": null,
"property-no-unknown": [
true,
{
"ignoreProperties": [
"color-hover",
"background-color-hover",
"color-active",
"background-color-active",
"class-active",
"class-disabled",
"button",
"button-color",
"button-background",
"button-border",
"button-classes",
"typescale",
"gs",
"gutter",
"gf",
"max",
"min",
"align"
]
}
]
}
},
"browserslist": [
"defaults"
]
}