-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.37 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
{
"name": "detective-postcss",
"version": "7.0.0",
"description": "Detective to find dependents of CSS (PostCSS dialect)",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/dependents/node-detective-postcss.git"
},
"bugs": {
"url": "https://github.com/dependents/node-detective-postcss/issues"
},
"homepage": "https://github.com/dependents/node-detective-postcss#readme",
"keywords": [],
"author": "Joscha Feth <joscha@feth.com>",
"license": "MIT",
"files": [
"dist",
"runkitExample.js"
],
"engines": {
"node": "^14.0.0 || >=16.0.0"
},
"peerDependencies": {
"postcss": "^8.4.47"
},
"dependencies": {
"is-url": "^1.2.4",
"postcss-values-parser": "^6.0.2"
},
"devDependencies": {
"@types/is-url": "^1.2.32",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"scripts": {
"prepack": "rimraf ./dist && tsc --outDir dist --declaration --declarationDir dist",
"pretest": "prettier --check .",
"test": "jest --ci",
"test:watch": "jest --watch --notify",
"precommit": "lint-staged",
"prettier": "prettier --write ."
},
"runkitExampleFilename": "runkitExample.js"
}