-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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": "@rubakas/pro-rata-rem",
"version": "0.1.4",
"description": "Responsive Root Element for TailwindCSS",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write --loglevel=error . !CHANGELOG.md",
"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/andriytyurnikov/pro-rata-rem.git"
},
"bugs": {
"url": "https://github.com/andriytyurnikov/pro-rata-rem/issues"
},
"homepage": "https://github.com/andriytyurnikov/pro-rata-rem#readme",
"keywords": [
"create-tailwind-plugin",
"tailwind-css-plugin",
"tailwindcss",
"plugin"
],
"author": "Andriy Tyurnikov",
"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",
"jest-matcher-css": "^1.1.0",
"lint-staged": "^10.5.2",
"lodash": "^4.17.20",
"postcss": "^8.1.9",
"prettier": "^2.2.0",
"standard-version": "^9.1.0",
"tailwindcss": "^2.0.1"
}
}