-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "eslint-plugin-erb",
"version": "2.0.1",
"description": "An ESLint plugin to lint JavaScript in ERB files (.js.erb)",
"license": "MIT",
"author": {
"name": "Splines",
"url": "https://github.com/splines"
},
"repository": {
"type": "git",
"url": "https://github.com/Splines/eslint-plugin-erb.git"
},
"bugs": {
"url": "https://github.com/Splines/eslint-plugin-erb/issues"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-processor",
"erb",
"ruby",
"embedded ruby",
"javascript",
"lint",
"linter"
],
"main": "index.js",
"files": [
"index.js",
"lib"
],
"devDependencies": {
"@stylistic/eslint-plugin": "^1.3.3",
"chai": "^4.3.10",
"eslint": "^9.0.0-alpha.0",
"globals": "^13.24.0",
"mocha": "^10.2.0"
},
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"test": "mocha",
"whats-included": "npm pack --dry-run",
"bump-version": "npm run test && npm version --no-git-tag-version",
"publish-final": "npm run test && npm publish"
}
}