-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 935 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
39
40
{
"name": "eslint-plugin-notice",
"version": "1.0.0",
"description": "An eslint rule that checks the top of files and --fix them too!",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "node tests/lib/rules/notice.js && node tests/test-utils.js && mocha staging"
},
"keywords": [
"eslint",
"plugin",
"notice",
"copyright",
"header",
"lint",
"eslintplugin"
],
"repository": "https://github.com/nickdeis/eslint-plugin-notice",
"author": "nickdeis",
"license": "MIT",
"devDependencies": {
"eslint": "^8.57.0",
"eslint-plugin-self": "^1.2.0",
"eslint6": "npm:eslint@^6.8.0",
"eslint7": "npm:eslint@^7.32.0",
"eslint9": "npm:eslint@^9.3.0",
"mocha": "^10.4.0"
},
"dependencies": {
"find-root": "^1.1.0",
"lodash": "^4.17.21",
"metric-lcs": "^0.1.2"
},
"peerDependencies": {
"eslint": ">=3.0.0"
}
}