-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.58 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "eslint-plugin-no-use-extend-native",
"version": "0.7.2",
"description": "ESLint plugin to prevent use of extended native objects",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && c8 ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dustinspecker/eslint-plugin-no-use-extend-native.git"
},
"bugs": "https://github.com/dustinspecker/eslint-plugin-no-use-extend-native/issues",
"homepage": "https://github.com/dustinspecker/eslint-plugin-no-use-extend-native",
"type": "module",
"engines": {
"node": ">=18.18.0"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"extend",
"native",
"prototype"
],
"author": "Dustin Specker",
"contributors": [
"Brett Zamir"
],
"license": "MIT",
"files": [
"index.js",
"src"
],
"exports": "./index.js",
"dependencies": {
"is-get-set-prop": "^2.0.0",
"is-js-type": "^3.0.0",
"is-obj-prop": "^2.0.0",
"is-proto-prop": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/eslint-parser": "^7.24.6",
"@babel/plugin-syntax-import-assertions": "^7.24.6",
"@babel/plugin-syntax-import-attributes": "^7.24.6",
"@eslint/js": "^9.3.0",
"ava": "^6.1.3",
"c8": "^10.0.0",
"eslint-ava-rule-tester": "^5.0.1",
"eslint-path-formatter": "^0.1.1",
"eslint-plugin-eslint-plugin": "^6.1.0",
"eslint-plugin-new-with-error": "^5.0.0",
"globals": "^15.3.0"
},
"peerDependencies": {
"eslint": "^9.3.0"
},
"c8": {
"reporter": [
"lcov",
"text"
]
}
}