Created
May 16, 2019 08:13
-
-
Save motoyasu-saburi/89d7b0fc69e3949a8b5b769a57c53bb0 to your computer and use it in GitHub Desktop.
セキュリティスキャンを行うためのpackage.json 参考:https://no1zy.hatenablog.com/entry/static-analysis-of-javascript-for-bughunters 感謝🙏
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "scanner", | |
"version": "1.0.0", | |
"description": "node scanner toolbox", | |
"main": "index.js", | |
"scripts": { | |
"eslint": "eslint . --fix", | |
"js-beautify": "js-beautify" | |
}, | |
"dependencies": { | |
"js-beautify": "1.9.0", | |
"eslint": "5.10.0", | |
"eslint-plugin-scanjs-rules": "0.2.1", | |
"eslint-plugin-security": "1.4.0", | |
"eslint-plugin-no-wildcard-postmessage": "0.1.3", | |
"eslint-plugin-vue": "5.0.0", | |
"eslint-plugin-angularjs-security-rules": "1.0.6", | |
"eslint-plugin-react": "7.11.1", | |
"eslint-plugin-no-unsanitized": "3.0.2" | |
}, | |
"author": "", | |
"license": "ISC" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment