-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.86 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"private": false,
"name": "postcss-licensing",
"version": "2.0.0",
"description": "Prepends licensing information to CSS files",
"license": "Apache-2.0",
"author": "Cassondra Roberts <[email protected]> (https://allons-y.llc)",
"repository": {
"type": "git",
"url": "https://github.com/castastrophe/postcss-licensing.git"
},
"bugs": {
"url": "https://github.com/castastrophe/postcss-licensing/issues"
},
"main": "index.js",
"files": [
"index.js"
],
"engines": {
"node": ">=20"
},
"scripts": {
"postinstall": "husky || true",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"test": "ava",
"coverage": "c8 yarn test",
"semantic-release": "semantic-release"
},
"funding": [
{
"type": "github",
"url": " https://github.com/sponsors/castastrophe"
}
],
"peerDependencies": {
"postcss": "^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"ava": "^6.2.0",
"c8": "^10.1.2",
"conventional-changelog-conventionalcommits": "^8.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"pinst": "^3.0.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-package-json": "^2.8.0",
"semantic-release": "^24.2.0"
},
"keywords": [
"css",
"licensing",
"plugin",
"postcss"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"package.json": [
"prettier-package-json --write"
]
}
}