-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "postcss-elm-css-tailwind",
"version": "0.0.0-dev",
"author": "Justin Rassier",
"description": "Generate elm-css versions of your Tailwind utilities",
"repository": {
"type": "git",
"url": "https://github.com/justinrassier/postcss-elm-css-tailwind"
},
"main": "src/index.js",
"scripts": {
"test": "npm run test:clean && npm run test:elm-compile && jest",
"test:clean": "rm -rf test/src && rm -rf test/gen && rm -rf test/dist",
"test:elm-compile": "cd test && postcss -o dist/main.css tailwind.css && elm make Main.elm",
"test:node-only": "cd test && postcss -o dist/main.css tailwind.css"
},
"keywords": [
"postcss",
"postcss-plugin",
"elm",
"tailwind",
"tailwindcss"
],
"license": "MIT",
"peerDependencies": {
"tailwindcss": "^1.6.2"
},
"devDependencies": {
"autoprefixer": "^9.8.6",
"elm": "^0.19.1-3",
"elm-format": "^0.8.3",
"jest": "^26.2.2",
"postcss-cli": "^7.1.1",
"tailwindcss": "^1.6.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}