-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
63 lines (63 loc) · 1.44 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
{
"name": "tailwindcss-export-config",
"version": "4.1.0",
"description": "Export Tailwindcss config options to SASS, SCSS, LESS and Stylus",
"main": "dist/index.js",
"bin": "cli.js",
"scripts": {
"build": "bili src/index.js",
"test": "jest",
"release": "npm run build && standard-version"
},
"files": [
"dist",
"cli.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dobromir-hristov/tailwindcss-export-config.git"
},
"keywords": [
"tailwindcss",
"scss",
"sass",
"less",
"stylus",
"css-next",
"node",
"export"
],
"author": "Dobromir Hristov <[email protected]> (http://digital-cult.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dobromir-hristov/tailwindcss-export-config/issues"
},
"engines": {
"node": ">=6.14.3"
},
"browserslist": [
"node 10"
],
"homepage": "https://github.com/dobromir-hristov/tailwindcss-export-config#readme",
"dependencies": {
"chalk": "^4.1.2",
"fs-extra": "^10.0.0",
"lodash.reduce": "^4.6.0",
"tailwindcss": "^3.0.6",
"yargs": "^17.2.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^27.3.1",
"bili": "^5.0.5",
"jest": "^27.3.1",
"standard-version": "^9.3.2"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}