-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
60 lines (60 loc) · 1.41 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
{
"name": "css-to-tailwind",
"version": "1.0.3",
"main": "css-to-tailwind.js",
"author": "Miklos Megyes <[email protected]>",
"license": "MIT",
"dependencies": {
"autoprefixer": "^9.8.6",
"css-color-converter": "^1.1.1",
"cssstyle": "^2.3.0",
"euclidean-distance": "^1.0.0",
"lodash.flow": "^3.5.0",
"lodash.isequal": "^4.5.0",
"lodash.ismatchwith": "^4.4.0",
"lodash.merge": "^4.6.2",
"memoize-one": "^5.1.1",
"parse-unit": "^1.0.1",
"postcss": "^7.0.32",
"postcss-params": "^1.0.2",
"postcss-safe-parser": "^4.0.2",
"postcss-selector-parser": "^6.0.2",
"tailwindcss": "^1.6.2"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "all"
},
"scripts": {
"test": "jest",
"fixlib": "patch-package && rollup -c rollup.config.js && yarn test"
},
"bin": {
"css-to-tailwind": "cli.js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"chalk": "^4.1.0",
"eslint": "^7.7.0",
"eslint-plugin-jest": "^23.20.0",
"jest": "^26.3.0",
"patch-package": "^6.2.2",
"prettier": "^2.0.5",
"rollup": "^2.23.1"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest-config.js"
]
},
"files": [
"*.js",
"lib/*",
"patched-lib/*",
"yarn.lock"
]
}