-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "ui-forms",
"version": "1.0.0",
"description": "HTML form elements styles",
"author": "Paulo Nunes <[email protected]>",
"license": "MIT",
"postcss": {
"plugins": {
"postcss-easy-import": {},
"postcss-preset-env": {
"stage": "0",
"browsers": "defaults",
"features": {
"custom-properties": false,
"prefers-color-scheme-query": false
}
},
"postcss-clean": {
"keepSpecialComments": "1"
}
}
},
"scripts": {
"css": "postcss src/ui-forms.css -o css/ui-forms.min.css",
"watch": "onchange 'src/**/*.css' -- npm-run-all css",
"build": "npm-run-all css",
"browsersync": "browser-sync start --server --files 'css/ui-forms.min.css' 'index.html'",
"prestart": "npm-run-all css",
"start": "npm-run-all --parallel watch browsersync css"
},
"devDependencies": {
"browser-sync": "latest",
"npm-run-all": "latest",
"onchange": "latest",
"postcss": "latest",
"postcss-clean": "latest",
"postcss-cli": "latest",
"postcss-easy-import": "latest",
"postcss-preset-env": "latest"
}
}