-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.63 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
77
{
"version": "0.0.0-dripip",
"license": "MIT",
"name": "css-codemod",
"author": "Spencer Miskoviak",
"repository": {
"type": "git",
"url": "https://github.com/skovy/css-codemod.git"
},
"homepage": "https://github.com/skovy/css-codemod#readme",
"keywords": [
"css",
"codemod",
"postcss"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"bin": {
"css-codemod": "./dist/cli.js"
},
"scripts": {
"start": "tsdx watch",
"build": "tsup src/index.ts src/cli.ts --dts",
"test": "tsdx test",
"test:watch": "tsdx test --watch",
"lint": "tsdx lint",
"prepare": "yarn build",
"clean": "rimraf dist",
"css-codemod": "yarn build && ./dist/cli.js"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"resolutions": {
"**/tsdx/jest": "27.4.7",
"**/tsdx/ts-jest": "27.1.3"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/node": "^17.0.13",
"dripip": "^0.10.0",
"execa": "^5.1.1",
"husky": "^7.0.4",
"postcss-calc": "^8.2.3",
"postcss-scss": "^4.0.3",
"rimraf": "^3.0.2",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"tsup": "^5.11.11",
"typescript": "^4.5.5"
},
"dependencies": {
"bundle-require": "^3.0.2",
"cac": "^6.7.12",
"esbuild": "^0.14.14",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"postcss": "^8.4.5",
"postcss-value-parser": "^4.2.0"
}
}