-
-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.36 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.36 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
60
61
{
"name": "@csstools/css-syntax-patches-for-csstree",
"description": "CSS syntax patches for CSS tree",
"version": "1.0.27",
"contributors": [
{
"name": "Antonio Laguna",
"email": "[email protected]",
"url": "https://antonio.laguna.es"
},
{
"name": "Romain Menke",
"email": "[email protected]"
}
],
"license": "MIT-0",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/csstools"
},
{
"type": "opencollective",
"url": "https://opencollective.com/csstools"
}
],
"main": "dist/index.json",
"types": "dist/index.d.ts",
"files": [
"CHANGELOG.md",
"LICENSE.md",
"README.md",
"dist"
],
"devDependencies": {
"@webref/css": "8.2.5",
"css-tree": "^3.1.0",
"postcss": "^8.4"
},
"scripts": {
"build": "node ./scripts/index.mjs",
"lint": "node ../../.github/bin/format-package-json.mjs",
"prepublishOnly": "npm run build && npm run test",
"test": "node --test"
},
"homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/css-syntax-patches-for-csstree#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/csstools/postcss-plugins.git",
"directory": "packages/css-syntax-patches-for-csstree"
},
"bugs": "https://github.com/csstools/postcss-plugins/issues",
"keywords": [
"css",
"csstree",
"syntax"
],
"volta": {
"extends": "../../package.json"
}
}