-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "eslint-plugin-pug",
"description": "An ESLint plugin for linting inline scripts in Pug files",
"version": "1.2.5",
"author": "Val Packett <[email protected]>, taichunmin <[email protected]>",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/valpackett/eslint-plugin-pug"
},
"bugs": {
"url": "https://github.com/valpackett/eslint-plugin-pug/issues"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"lint",
"pug",
"jade"
],
"main": "index.js",
"scripts": {
"repl": "node --experimental-repl-await repl.js",
"lint": "eslint --ext .js --fix .",
"test": "jest"
},
"dependencies": {
"lodash": "^4.17.21",
"pug-lexer": "^5.0.1",
"pug-parser": "^6.0.0",
"pug-walk": "^2.0.0"
},
"devDependencies": {
"eslint": "^8.27.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-pug": "file:.",
"jest": "^29.7.0"
}
}