65 lines
1.6 KiB
JSON
65 lines
1.6 KiB
JSON
{
|
|
"name": "mosec-node-plugin",
|
|
"version": "1.0.2",
|
|
"description": "用于检测Node项目的第三方依赖组件是否存在安全漏洞",
|
|
"author": "retanoj <mmsrc@immomo.com>",
|
|
"homepage": "https://github.com/momosecurity/mosec-node-plugin.git",
|
|
"main": "index.js",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/momosecurity/mosec-node-plugin.git"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"package.json",
|
|
"/dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"build-watch": "tsc -w",
|
|
"tslint": "tslint --project tsconfig.json --format stylish --exclude **/src/**/*.js",
|
|
"lint": "npm run tslint",
|
|
"test": "npm run lint && npm run build && tap test/*.test.[jt]s --timeout=60 --node-arg=-r --node-arg=ts-node/register"
|
|
},
|
|
"bin": {
|
|
"mosec": "./index.js"
|
|
},
|
|
"keywords": [
|
|
"security",
|
|
"dependencies",
|
|
"vulnerability"
|
|
],
|
|
"license": "SEE LICENSE IN <LICENSE>",
|
|
"devDependencies": {
|
|
"@types/node": "^6.14.4",
|
|
"@types/semver": "^5.5.0",
|
|
"sinon": "^1.17.3",
|
|
"tap": "^16.0.0",
|
|
"tap-only": "0.0.5",
|
|
"ts-node": "^8.1.0",
|
|
"tslint": "^5.13.1",
|
|
"typescript": "^3.3.3333"
|
|
},
|
|
"dependencies": {
|
|
"ansicolors": "^0.3.2",
|
|
"axios": "^0.26.1",
|
|
"chalk": "^4.1.0",
|
|
"commander": "^5.1.0",
|
|
"debug": "^3.2.5",
|
|
"lodash.assign": "^4.2.0",
|
|
"lodash.assignin": "^4.2.0",
|
|
"lodash.clonedeep": "^4.3.0",
|
|
"lodash.flatten": "^4.4.0",
|
|
"lru-cache": "^4.0.0",
|
|
"semver": "^5.5.1",
|
|
"then-fs": "^2.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">= 6.0.0",
|
|
"npm": ">= 5.2.0"
|
|
}
|
|
}
|