-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 921 Bytes
/
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
{
"name": "eslint-plugin-vue-required-attributes",
"version": "1.0.1",
"author": "ynhhoJ",
"description": "Require specified attributes on specified components from being used!",
"license": "MIT",
"main": "./build/index.js",
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:ynhhoJ/eslint-plugin-vue-required-attributes.git"
},
"scripts": {
"build": "tsc --build",
"test": "jest"
},
"devDependencies": {
"@types/eslint": "^8.4.10",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"jest": "^29.4.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vue-eslint-parser": "^9.1.0"
},
"keywords": [
"eslint",
"vue",
"attributes",
"required"
]
}