-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
54 lines (54 loc) · 1.37 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
{
"name": "tailwindcss-theming",
"version": "3.0.0-beta.3",
"description": "A Tailwind CSS plugin that helps with theming",
"main": "dist/index.js",
"author": {
"email": "enzo@innocenzi.dev",
"name": "Enzo Innocenzi",
"url": "https://innocenzi.dev"
},
"scripts": {
"prepare": "rimraf dist && tsc",
"build": "yarn prepare",
"test": "jest test",
"test:watch": "jest test --watch",
"release": "yarn test && yarn build && standard-version --skip.changelog"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hawezo/tailwindcss-theming.git"
},
"keywords": [
"tailwind",
"theming",
"dark mode",
"scheme",
"themes"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hawezo/tailwindcss-theming/issues"
},
"homepage": "https://github.com/hawezo/tailwindcss-theming#readme",
"devDependencies": {
"@types/faker": "^4.1.12",
"@types/jest": "^26.0.10",
"@types/lodash": "^4.14.159",
"@types/node": "^14.6.0",
"faker": "^4.1.0",
"jest": "^26.4.0",
"jest-matcher-css": "^1.1.0",
"jest-mock-console": "^1.0.1",
"postcss": "^8.0.0",
"rimraf": "^3.0.2",
"standard-version": "^9.0.0",
"tailwindcss": "v2.0.0",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
},
"dependencies": {
"@ctrl/tinycolor": "^3.1.4",
"lodash": "^4.17.20"
}
}