-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.6 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": "@programic/eslint-plugin",
"version": "10.1.1",
"description": "Official ESLint plugin for Programic",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint ./lib ./tests --ext .js,.ts",
"test": "jest ./tests",
"prepublishOnly": "npm run lint && npm run test",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"eslint",
"programic",
"eslintplugin"
],
"repository": {
"type": "git",
"url": "https://github.com/programic/eslint-plugin"
},
"author": "Thimon Wentink",
"license": "MIT",
"bugs": {
"url": "https://github.com/programic/eslint-plugin/issues"
},
"homepage": "https://programic.com",
"peerDependencies": {
"eslint": "^8.56.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/scope-manager": "^6.15.0",
"@typescript-eslint/types": "^6.15.0",
"@typescript-eslint/utils": "^6.15.0",
"eslint-utils": "^3.0.0"
},
"devDependencies": {
"@types/eslint": "^8.56.0",
"@types/jest": "^29.5.11",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-unicorn": "^50.0.1",
"eslint-plugin-vue": "^9.19.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"vue-eslint-parser": "^9.3.2"
}
}