-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.77 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
{
"name": "tailwindcss-responsive-helper",
"version": "1.1.0",
"description": "A helpful plugin that shows the current screen size for testing responsive designs.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write --loglevel=error . !CHANGELOG.md",
"test": "jest --runInBand --testLocationInResults",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build",
"release": "standard-version",
"postrelease": "git push --follow-tags origin main && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hsnlbnan/tailwindcss-responsive-helper.git"
},
"bugs": {
"url": "https://github.com/hsnlbnan/tailwindcss-responsive-helper/issues"
},
"homepage": "https://github.com/hsnlbnan/tailwindcss-responsive-helper#readme",
"keywords": [
"create-tailwind-plugin",
"tailwind-css-plugin",
"tailwindcss",
"plugin",
"responsive",
"helper",
"debug",
"screens",
"tailwind responsive"
],
"author": "Hüsnü Lübnan",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.18.63",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-prettier": "^3.4.1",
"lint-staged": "^10.5.4",
"postcss": "^8.4.47",
"prettier": "^2.8.8",
"standard-version": "^9.5.0",
"tailwindcss": "^2.2.19",
"typescript": "^4.9.5"
},
"peerDependencies": {
"tailwindcss": "^2.0.0 || ^3.0.0"
}
}