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