forked from sergejmueller/wpcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.07 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
{
"name": "wpcheck",
"version": "1.1.2",
"description": "Vulnerability scanner for WordPress",
"preferGlobal": true,
"main": "index.js",
"bin": {
"wpcheck": "./index.js"
},
"files": [
"lib",
"config",
"index.js"
],
"keywords": [
"wordpress",
"security",
"vulnerability",
"scanner",
"scan"
],
"author": {
"name": "Sergej Müller",
"url": "https://sergejmueller.github.io"
},
"homepage": "https://github.com/sergejmueller/wpcheck",
"repository": "sergejmueller/wpcheck",
"license": "MIT",
"dependencies": {
"colors": "^1.1.2",
"minimist": "^1.2.0",
"pad-end": "^1.0.2",
"prepend-http": "^1.0.4",
"request": "^2.81.0",
"rtrim": "^1.0.0",
"semver": "^5.3.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"child-process-promise": "^2.1.3",
"eslint": "^3.17.1",
"eslint-plugin-node": "^4.2.0",
"mocha": "^3.2.0",
"must": "^0.13.4"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint && mocha --no-timeouts"
},
"engines": {
"node": ">=6"
}
}