-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 934 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
{
"name": "@igneel64/eslint-plugin-dangerous",
"version": "0.0.4",
"description": "This plugin is made to let you know of some of JavaScript's quirks that might lead to headaches later on in your program.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"rule",
"dangerous",
"eslint nan"
],
"bugs": {
"url": "https://github.com/igneel64/eslint-plugin-dangerous/issues",
"email": "[email protected]"
},
"author": "Peter Perlepes <[email protected]>",
"main": "./lib/index.js",
"scripts": {
"test": "mocha tests --recursive",
"pre:release": "npm run test",
"release": "npm publish --access=public"
},
"peerDependencies": {
"eslint": ">= 5.0"
},
"devDependencies": {
"eslint": "^6.1.0",
"mocha": "^6.2.0"
},
"license": "MIT",
"repository": "igneel64/eslint-plugin-dangerous",
"dependencies": {
"eslint-utils": "^1.4.3"
}
}