-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.36 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
{
"name": "@morgan-stanley/eslint-plugin-externalincludes",
"version": "0.0.1",
"description": "Suite of @html-eslint ESLint rules for working with external references such as script src and link hrefs",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"homepage": "https://github.com/morganstanley/eslint-plugin-externalincludes",
"author": "Morgan Stanley",
"repository": {
"type": "git",
"url": "git+https://github.com/morganstanley/eslint-plugin-externalincludes.git"
},
"main": "./lib/index.js",
"exports": "./lib/index.js",
"scripts": {
"lint": "npm-run-all \"lint:*\"",
"lint:eslint-docs": "npm-run-all \"update:eslint-docs -- --check\"",
"lint:js": "eslint .",
"test": "mocha tests --recursive",
"update:eslint-docs": "eslint-doc-generator"
},
"devDependencies": {
"@eslint/compat": "^1.2.2",
"@html-eslint/eslint-plugin": "^0.27.0",
"@html-eslint/parser": "^0.29.0",
"eslint": "^9.13.0",
"eslint-doc-generator": "^1.7.1",
"eslint-plugin-eslint-plugin": "^6.3.1",
"eslint-plugin-n": "^17.13.1",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5"
},
"engines": {
"node": "^14.17.0 || ^16.0.0 || >= 18.0.0"
},
"peerDependencies": {
"@html-eslint/eslint-plugin": ">=0.19",
"@html-eslint/parser": ">=0.19",
"eslint": ">=7"
},
"license": "Apache-2.0"
}