-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 990 Bytes
/
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
{
"name": "suitcss-components-form",
"description": "Component CSS for forms",
"version": "1.0.0",
"license": "MIT",
"style": "index.css",
"files": [
"index.css",
"index.js",
"lib"
],
"devDependencies": {
"stylelint-config-suitcss": "^5.0.0",
"suitcss-components-test": "*",
"suitcss-preprocessor": "^1.0.0"
},
"scripts": {
"build": "npm run setup && npm run preprocess",
"build-test": "npm run setup && npm run preprocess-test",
"preprocess": "suitcss index.css build/build.css",
"preprocess-test": "suitcss -i test test/test.css build/test.css",
"setup": "npm install",
"watch": "npm run preprocess-test -- -w -v",
"test": "suitcss -c test/config.json index.css build/output.css && rm build/output.css"
},
"repository": {
"type": "git",
"url": "git://github.com/giuseppeg/suitcss-components-form.git"
},
"keywords": [
"browser",
"css-components",
"form",
"suitcss",
"style"
]
}