forked from Yash-Singh1/eslint-plugin-userscripts
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 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-userscripts",
"version": "0.2.0",
"description": "Implements rules for userscripts metadata in eslint",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Yash Singh",
"main": "./lib/index.js",
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha tests --recursive",
"lint": "eslint . --ignore-path .gitignore && prettier --check . --ignore-path .gitignore",
"lint:fix": "eslint . --ignore-path .gitignore --fix && prettier --write . --ignore-path .gitignore",
"prepare": "husky install"
},
"dependencies": {
"requireindex": "~1.2.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.8",
"acorn": "^8.5.0",
"eslint": "^8.0.0",
"eslint-plugin-eslint-plugin": ">=4.0.0",
"eslint-plugin-import": ">=2.24.2",
"eslint-plugin-unicorn": ">=37.0.1",
"husky": "^7.0.2",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"prettier": "^2.4.0"
},
"peerDependencies": {
"eslint": ">=6.0.0 <=^8.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"license": "MIT",
"homepage": "https://github.com/Yash-Singh1/eslint-plugin-userscripts#readme",
"repository": {
"type": "git",
"url": "https://github.com/Yash-Singh1/eslint-plugin-userscripts.git"
},
"bugs": {
"url": "https://github.com/Yash-Singh1/eslint-plugin-userscripts/issues"
}
}