-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.7 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
{
"name": "tailwindcss-accent",
"version": "2.1.2",
"description": "Add dynamic accent color to your Tailwind CSS project.",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src/index.js",
"src/index.d.ts",
"src/utils.js"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write --loglevel=error .",
"test": "jest",
"test:watch": "jest --watch",
"release": "standard-version",
"postrelease": "git push --follow-tags origin main && npm publish"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix && npm run format && npm run test"
}
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/enjidev/tailwindcss-accent.git"
},
"bugs": {
"url": "/~https://github.com/enjidev/tailwindcss-accent/issues"
},
"homepage": "/~https://github.com/enjidev/tailwindcss-accent#readme",
"keywords": [
"tailwind-css-plugin",
"tailwindcss",
"plugin",
"accent-color",
"theming",
"theme"
],
"author": "enjidev",
"license": "MIT",
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.2",
"lodash": "^4.17.20",
"postcss": "^8.1.9",
"prettier": "^2.2.0",
"standard-version": "^9.1.0",
"tailwindcss": "^3.0.0",
"tailwindcss-v2": "npm:tailwindcss@^2.0.0"
},
"dependencies": {
"color-convert": "^2.0.1"
},
"peerDependencies": {
"tailwindcss": ">=2.0.0 || >=3.0.0"
}
}