-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.14 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
{
"name": "cata-variables",
"version": "0.1.0",
"description": "Cata variables",
"author": {
"name": "Raúl Hernández",
"email": "raulghm@gmail.com",
"url": "https://github.com/raulghm"
},
"repository": "raulghm/cata-variables",
"homepage": "https://github.com/raulghm/cata-variables#readme",
"scripts": {
"build": "npm run setup && npm run preprocess",
"build-test": "npm run setup && npm run preprocess-test",
"lint": "suitcss -c test/config.json index.css build/lint.css && rm build/lint.css",
"preprocess": "suitcss index.css build/build.css",
"preprocess-test": "suitcss -i test test/test.css build/test.css",
"setup": "yarn install",
"watch": "npm run preprocess-test -- -w -v",
"test": "npm run lint"
},
"keywords": [
"base",
"browser",
"css",
"suitcss",
"style",
"variables",
"cata"
],
"license": "MIT",
"files": [
"index.css",
"index.js",
"lib"
],
"style": "index.css",
"devDependencies": {
"stylelint-config-suitcss": "^14.0.0",
"suitcss-components-test": "^1.0.0",
"suitcss-preprocessor": "suitcss/preprocessor#master"
}
}