-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.91 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
{
"name": "cacao-css",
"description": "A set of composable CSS utilities that provide a solid foundation for website projects.",
"version": "8.0.1",
"author": "Aptuitiv, Inc <hello@aptuitiv.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/aptuitiv/cacao.git"
},
"copyright": "Aptuitiv, Inc",
"bugs": {
"email": "support@aptuitiv.com"
},
"bin": {
"cacao-convert-v3": "./scripts/v3/index.js",
"cacao-convert-v6": "./scripts/v6/index.js",
"cacao-convert-v8": "./scripts/v8/index.js"
},
"files": [
"dist",
"scripts/v3",
"scripts/v6",
"scripts/v8"
],
"type": "module",
"scripts": {
"build": "node scripts/build all",
"build-combine-files": "node scripts/build combine-files",
"build-copy-files": "node scripts/build copy-files",
"build-child-spacing": "node scripts/build child-spacing",
"build-gutters": "node scripts/build gutters",
"build-imports": "node scripts/build imports",
"build-margins": "node scripts/build margins",
"build-media-queries": "node scripts/build media",
"build-paddings": "node scripts/build paddings",
"eslint": "eslint --fix ./scripts",
"watch": "watch-eslint --fix --color ./scripts"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.2",
"fancy-log": "^2.0.0",
"fs-extra": "^11.3.3",
"log-symbols": "^7.0.1",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"prettier": "^3.8.1",
"recursive-readdir": "^2.2.3",
"stylelint": "^17.0.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^7.0.1"
},
"devDependencies": {
"@aptuitiv/eslint-config-aptuitiv": "^1.2.0",
"eslint": "^9.39.2",
"watch-eslint": "^1.1.0"
}
}