-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1 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
{
"name": "eslint-plugin-no-wildcard-postmessage",
"description": "custom ESLint rule to disallows calling postMessage to wildcard targets",
"version": "0.2.0",
"author": "eslint-plugin-no-wildcard-postmessage contributors",
"bugs": {
"url": "https://github.com/mozfreddyb/eslint-plugin-no-wildcard-postmessage/issues"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^3.2.0"
},
"dependencies": {},
"homepage": "https://github.com/mozfreddyb/eslint-plugin-no-wildcard-postmessage/",
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"lint",
"security"
],
"license": "MPL-2.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mozfreddyb/eslint-plugin-no-wildcard-postmessage/issues"
},
"scripts": {
"test": "./node_modules/.bin/mocha tests/rules/",
"lint": "node_modules/.bin/eslint index.js lib/**/*.js tests/**/*.js"
},
"engines": {
"node": ">= 10"
}
}