├── .drone.yml ├── .eslintrc ├── .gitignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── contributing.md ├── package.json └── tasks └── nsp.js /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesecurity/grunt-nsp/HEAD/.drone.yml -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "nodesecurity/es5" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesecurity/grunt-nsp/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesecurity/grunt-nsp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesecurity/grunt-nsp/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesecurity/grunt-nsp/HEAD/contributing.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesecurity/grunt-nsp/HEAD/package.json -------------------------------------------------------------------------------- /tasks/nsp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesecurity/grunt-nsp/HEAD/tasks/nsp.js --------------------------------------------------------------------------------