Skip to content
This repository has been archived by the owner on Aug 4, 2021. It is now read-only.

Commit

Permalink
v0.7.2 (#28)
Browse files Browse the repository at this point in the history
##### Changes
* Travis: Remove `node_js` v4 & v5
* package.json: Update `mocha`, `request`, `eslint`,
`child-process-promise`
* Readme: Set Node.js version to `>= 6`
* package.json: Set `engines.node` to `>= 6`
* gitignore: Add `.idea` rule
* Closes #27
  • Loading branch information
sergejmueller authored Oct 8, 2016
1 parent d995327 commit a6a1993
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ node_modules
.npm
logs
*.log
.idea/
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
language: node_js
node_js:
- "6"
- "5"
- "4"
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# wpscan / CHANGELOG


### v0.7.2 (2016-10-08)

##### Changes
* Travis: Remove `node_js` v4 & v5
* package.json: Update `mocha`, `request`, `eslint`, `child-process-promise`
* Readme: Set Node.js version to `>= 6`
* package.json: Set `engines.node` to `>= 6`
* gitignore: Add `.idea` rule
* Closes #27


### v0.7.1 (2016-08-15)

##### Changes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ npm install --global wpscan
```

##### Notes
* `wpscan` requires `Node.js >= 4` and [npm](http://blog.npmjs.org/post/85484771375/how-to-install-npm).
* `wpscan` requires `Node.js >= 6` and [npm](http://blog.npmjs.org/post/85484771375/how-to-install-npm).
* [Fix](https://docs.npmjs.com/getting-started/fixing-npm-permissions) `npm` permissions if you get the `Permission denied` error.


Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wpscan",
"version": "0.7.1",
"version": "0.7.2",
"description": "Vulnerability scanner for WordPress",
"preferGlobal": true,
"main": "index.js",
Expand Down Expand Up @@ -31,22 +31,22 @@
"minimist": "^1.2.0",
"pad-end": "^1.0.2",
"prepend-http": "^1.0.4",
"request": "^2.74.0",
"request": "^2.75.0",
"rtrim": "^0.0.3",
"semver": "^5.3.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"eslint": "^3.2.2",
"eslint": "^3.7.1",
"must": "^0.13.2",
"mocha": "^3.0.1",
"child-process-promise": "^2.0.3"
"mocha": "^3.1.0",
"child-process-promise": "^2.1.3"
},
"scripts": {
"lint": "eslint .",
"test": "npm outdated && npm run lint && mocha --no-timeouts"
},
"engines": {
"node": ">=4"
"node": ">=6"
}
}

0 comments on commit a6a1993

Please sign in to comment.