-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
executable file
·53 lines (53 loc) · 1.43 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
{
"name": "tailwindcss-animatecss",
"version": "3.0.5",
"description": "Add Animate CSS as Tailwind CSS plugin to your project.",
"main": "src/index.js",
"author": "Fabian Bentz Webentwicklung <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/bentzibentz/tailwindcss-animate.css.git"
},
"keywords": [
"tailwind",
"tailwindcss",
"animatecss",
"animate.css",
"animate",
"cssanimations",
"css",
"awesome",
"awesome-list"
],
"license": "MIT",
"scripts": {
"test": "jest",
"demo:dev": "npx tailwindcss -i ./demo/style.css -o ./demo/output.css --watch",
"demo:build": "npx tailwindcss -i ./demo/style.css -o ./demo/output.css",
"demo:deploy": "rm -rf demo/output.css && npm run demo:build && gh-pages -d demo",
"prepublishOnly": "node scripts/build.js",
"release": "release-it --no-git.requireUpstream"
},
"peerDependencies": {
"tailwindcss": ">=3.1.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"autoprefixer": "^10.4.8",
"clean-css": "^5.3.1",
"gh-pages": "^4.0.0",
"jest": "^29.0.1",
"jest-matcher-css": "^1.1.0",
"postcss": "^8.4.16",
"release-it": "^17.0.0",
"tailwindcss": "^3.3.5"
},
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"infile": "CHANGELOG.md"
}
}
}
}