UNPKG
grunt-nsp
Version:
latest (2.3.1)
2.3.1
2.3.0
2.2.0
2.1.2
2.1.0
2.0.1
2.0.0
Run Node Security as a grunt task
github.com/nodesecurity/grunt-nsp
nodesecurity/grunt-nsp
grunt-nsp
/
Gruntfile.js
15 lines
(10 loc)
•
222 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict'
;
module
.
exports
=
function
(
grunt
) { grunt.
initConfig
({
nsp
: {
package
: grunt.
file
.
readJSON
(
'package.json'
) } }); grunt.
loadTasks
(
'tasks'
); grunt.
registerTask
(
'default'
, [
'nsp'
]); };