-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
51 lines (51 loc) · 1.18 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
44
45
46
47
48
49
50
51
{
"name": "postcss-advanced-variables",
"version": "5.0.0",
"description": "Use Sass-like variables, conditionals, and iterators in CSS",
"author": "Jonathan Neal <[email protected]>",
"license": "CC0-1.0",
"repository": "jonathantneal/postcss-advanced-variables",
"homepage": "https://github.com/jonathantneal/postcss-advanced-variables#readme",
"bugs": "https://github.com/jonathantneal/postcss-advanced-variables/issues",
"main": "index.js",
"module": "index.mjs",
"files": [
"index.js",
"index.mjs"
],
"scripts": {
"prepublishOnly": "npm test",
"pretest": "npm run build",
"build": "rollup -c .rollup.mjs --silent",
"test": "postcss-tape"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@csstools/sass-import-resolve": "^1.0.0"
},
"peerDependencies": {
"postcss": "^8.4"
},
"devDependencies": {
"postcss": "^8.4",
"postcss-scss": "^3.0.5",
"postcss-tape": "^6.0.1",
"rollup": "^4.24.0"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"sass",
"scss",
"variables",
"conditionals",
"iterators",
"fors",
"eaches",
"medias",
"defaults"
]
}