-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
62 lines (62 loc) · 1.57 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
{
"name": "postcss-prefixwrap",
"version": "1.53.0",
"description": "A PostCSS plugin that is used to wrap css styles with a css selector to constrain their affect on parent elements in a page.",
"keywords": [
"css",
"javascript",
"nodejs",
"pnpm",
"postcss",
"postcss-plugin",
"typescript",
"yarn"
],
"homepage": "https://github.com/dbtedman/postcss-prefixwrap#readme",
"bugs": "https://github.com/dbtedman/postcss-prefixwrap/issues",
"repository": "https://github.com/dbtedman/postcss-prefixwrap",
"license": "MIT",
"author": {
"name": "Daniel Tedman",
"url": "https://tedman.dev"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"*.md",
"build"
],
"scripts": {
"build": "tsc --build tsconfig.app.json",
"clean": "node automation-clean.js",
"format": "sort-package-json && prettier . --write",
"lint": "sort-package-json --check && prettier . --check",
"prepare": "husky",
"test": "jest"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@jest/globals": "29.7.0",
"@tsconfig/node18": "18.2.4",
"@types/jest": "29.5.14",
"@types/node": "22.10.5",
"glob": "11.0.1",
"husky": "9.1.7",
"jest": "29.7.0",
"postcss": "8.4.49",
"prettier": "3.4.2",
"sort-package-json": "2.12.0",
"source-map": "0.7.4",
"source-map-js": "1.2.1",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"peerDependencies": {
"postcss": "*"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}