UNPKG

npm-dependency-analyzer

Version:

Plugin to validate dependencies, concerning their license and vulnerabities

76 lines (75 loc) 1.67 kB
{ "name": "npm-dependency-analyzer", "version": "0.7.0", "description": "Plugin to validate dependencies, concerning their license and vulnerabities", "main": "index.js", "bin": { "npm-dependency-analyzer": "./bin/npm-dependency-analyzer.js" }, "scripts": { "start:dev": "nodemon --exec npm run lint", "debug": "node ./bin/npm-dependency-analyzer | bunyan", "clean": "rimraf build/ && rimraf lib/", "prebuild": "npm install && npm run clean", "build": "npm run lint && babel src -d lib && npm test", "lint": "standard src/ --fix", "test": "jest | bunyan" }, "engines": { "node": ">=8.0.0", "npm": ">=5.7.0" }, "keywords": [ "CLI", "vulnerabilities", "licenses", "npm", "build-plugin" ], "dependencies": { "bunyan": "^1.8.12", "isomorphic-fetch": "^2.2.1", "license-checker": "^20.1.0", "lodash": "^4.17.10", "read-package-tree": "^5.2.1" }, "devDependencies": { "babel-cli": "^6.26.0", "babel-preset-env": "^1.6.1", "babel-preset-stage-0": "^6.24.1", "jest": "^22.4.3", "nodemon": "^1.17.4", "rimraf": "^2.6.2", "standard": "^11.0.1" }, "standard": { "env": [ "jest" ], "globals": [ "Request" ] }, "babel": { "presets": [ [ "env", { "targets": { "node": "8.0.0" } } ], "stage-0" ] }, "repository": { "type": "git", "url": "https://github.com/pt-osda/npm-dependency-analyzer.git" }, "author": { "name": "Tiago Lopes", "email": "tiago.m_lopes@hotmail.com" }, "license": "BSD-3-Clause" }