forked from rashfael/eslint-plugin-vue-pug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.58 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
{
"name": "eslint-plugin-vue-pug",
"version": "0.6.2",
"description": "linting your pug templates in vue single file components",
"main": "lib/index.js",
"scripts": {
"new": "node tools/new-rule.js",
"test:base": "mocha \"tests/**/*.js\" --reporter dot",
"test": "nyc npm run test:base -- \"tests/**/*.js\" --timeout 60000",
"debug": "mocha --inspect \"tests/**/*.js\" --reporter dot --timeout 60000",
"docs:watch": "vuepress dev docs",
"predocs:build": "npm run update",
"docs:build": "vuepress build docs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"update": "node ./tools/update.js"
},
"author": "rash <[email protected]> (https://rash.codes)",
"homepage": "https://github.com/rashfael/eslint-plugin-vue-pug",
"repository": "github:rashfael/eslint-plugin-vue-pug",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/parser": "^5.16.0",
"@vue/compiler-dom": "^3.2.31",
"@vuepress/plugin-pwa": "^1.9.7",
"eslint": "^8.28.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-plugin": "^3.5.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsonc": "^1.4.0",
"eslint-plugin-node-dependencies": ">=0.5.0 <1.0.0",
"eslint-plugin-prettier": "^3.4.1",
"lodash": "^4.17.21",
"mocha": "^7.1.2",
"nyc": "^15.1.0",
"prettier": "^2.6.1",
"vue-eslint-parser": "^9.1.0",
"vuepress": "^1.8.2",
"xhtml2pug": "^3.2.1"
},
"dependencies": {
"vue-eslint-parser-template-tokenizer-pug": "^0.4.11"
},
"peerDependencies": {
"eslint-plugin-vue": "^9.8.0"
}
}