-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
51 lines (51 loc) · 1.11 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-calc",
"version": "10.0.2",
"description": "PostCSS plugin to reduce calc()",
"keywords": [
"css",
"postcss",
"postcss-plugin",
"calculation",
"calc"
],
"homepage": "https://github.com/postcss/postcss-calc",
"repository": {
"type": "git",
"url": "https://github.com/postcss/postcss-calc.git"
},
"main": "src/index.js",
"types": "types/index.d.ts",
"files": [
"src",
"types",
"LICENSE"
],
"scripts": {
"prepare": "pnpm run build && tsc",
"build": "jison ./parser.jison -o src/parser.js",
"lint": "eslint . && tsc",
"test": "node --test"
},
"author": "Andy Jansson",
"license": "MIT",
"engines": {
"node": "^18.12 || ^20.9 || >=22.0"
},
"devDependencies": {
"@types/node": "^22.9.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"jison-gho": "0.6.1-216",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"typescript": "~5.6.3"
},
"dependencies": {
"postcss-selector-parser": "^7.0.0",
"postcss-value-parser": "^4.2.0"
},
"peerDependencies": {
"postcss": "^8.4.38"
}
}