-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
92 lines (92 loc) · 2.56 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "elm-tailwind-modules",
"version": "0.5.0",
"author": "Philipp Krüger",
"description": "Turn your Tailwind CSS into Elm code using Elm-css, which purges using Elm's --optimize!",
"repository": {
"type": "git",
"url": "https://github.com/matheus23/elm-tailwind-modules"
},
"scripts": {
"build": "rimraf dist && yarn build:lib && yarn build:cli",
"build:cli": "rollup -c cli.rollup.config.ts && chmod +x dist/cli.js",
"build:lib": "rollup -c rollup.config.ts",
"docs": "rimraf docs && typedoc src/index.ts --out docs && node dist/cli.js --dir docs/example/",
"test": "ava --serial --timeout=2m",
"test-all": "yarn test:clean && yarn test:elm-compile && yarn test",
"test:clean": "rimraf test-example/src/Tailwind",
"test:elm-compile": "ts-node test-example/test-run.ts && cd test-example && elm make src/Main.elm --output=/dev/null",
"test:node-only": "ts-node test-example/test-run.ts",
"prepublishOnly": "yarn build && yarn test-all && yarn docs"
},
"license": "MIT",
"dependencies": {
"chalk": "^4.1.1",
"color-name": "^1.1.4",
"commander": "^7.2.0",
"css-what": "^5.0.0",
"deep-equal": "^2.0.3",
"fs-extra": "^9.1.0",
"lodash": "^4.17.21",
"rollup": "^2.45.2",
"tslib": "^2.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/typography": "^0.5.4",
"@types/color-name": "^1.1.1",
"@types/deep-equal": "^1.0.1",
"@types/lodash": "^4.14.168",
"autoprefixer": "^10.2.5",
"ava": "^4.3.1",
"elm": "^0.19.1-5",
"elm-format": "^0.8.5",
"execa": "^5.0.0",
"magic-string": "^0.25.7",
"postcss": "^8.4.14",
"rimraf": "^3.0.2",
"tailwindcss": "^3.1.6",
"ts-node": "^9.1.1",
"typedoc": "^0.20.36",
"typescript": "4.2.4"
},
"peerDependencies": {
"postcss": "^8.2.4",
"tailwindcss": "^2.0.2 || ^3.1.6"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"bin": {
"elm-tailwind-modules": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"types": "dist/index.d.ts",
"ava": {
"files": [
"test/**/*"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"keywords": [
"elm",
"tailwind",
"tailwindcss"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}