forked from csstools/postcss-advanced-variables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.58 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "postcss-advanced-variables-fixes",
"version": "4.0.4",
"description": "Use Sass-like variables, conditionals, and iterators in CSS",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+/~https://github.com/armano2/postcss-advanced-variables.git"
},
"homepage": "/~https://github.com/armano2/postcss-advanced-variables#readme",
"bugs": "/~https://github.com/armano2/postcss-advanced-variables/issues",
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"files": [
"lib/index.cjs",
"lib/index.mjs"
],
"scripts": {
"prepublishOnly": "npm test",
"format": "prettier src -w",
"pretest": "rollup -c rollup.config.js",
"test": "npm run test:lint && npm run test:format && npm run test:unit",
"test:lint": "eslint src",
"test:format": "prettier src -c",
"test:unit": "node --test"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@csstools/sass-import-resolve": "^1.0.0"
},
"peerDependencies": {
"postcss": "^8.2.4"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"esbuild": "^0.20.1",
"eslint": "^9.6.0",
"globals": "^15.5.0",
"postcss": "^8.4.35",
"postcss-scss": "^4.0.9",
"prettier": "^3.2.5",
"rollup": "^4.12.0",
"rollup-plugin-esbuild": "^6.1.1"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"sass",
"scss",
"variables",
"conditionals",
"iterators",
"fors",
"eaches",
"medias",
"defaults"
]
}