-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
75 lines (75 loc) · 2.01 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
{
"name": "tailwindcss-multi-theme",
"version": "0.0.0-development",
"description": "The easiest way to create themes with Tailwind CSS.",
"main": "dist/index.js",
"files": [
"dist",
"prefers-dark.js",
"README.md"
],
"scripts": {
"cz": "git-cz",
"test": "jest",
"codecov": "codecov",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prebuild": "rimraf dist",
"build": "webpack",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/estevanmaito/tailwindcss-multi-theme.git"
},
"keywords": ["tailwind", "theme", "dark", "multi"],
"author": "Estevan Maito <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/estevanmaito/tailwindcss-multi-theme/issues"
},
"homepage": "https://github.com/estevanmaito/tailwindcss-multi-theme#readme",
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"babel-loader": "8.1.0",
"codecov": "3.7.1",
"commitizen": "4.1.2",
"cz-conventional-changelog": "3.2.0",
"eslint": "7.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"husky": "4.2.5",
"jest": "26.0.1",
"lodash": "4.17.19",
"postcss": "7.0.30",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"semantic-release": "^17.0.8",
"tailwindcss": "1.4.6",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"postcss-selector-parser": "6.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test:coverage"
}
},
"peerDependencies": {
"tailwindcss": "^1.4.6"
}
}