forked from OWASP/NodeGoat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
194 lines (177 loc) · 6.21 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
"use strict";
var exec = require("child_process").exec;
var APP_JS_FILES = ["app/assets/js/**/*.js", "config/**/*.js", "app/data/**/*.js",
"app/routes/**/*.js", "server.js"
];
var SUPPORT_JS_FILES = ["Gruntfile.js", "artifacts/**/*.js", "test/**/*.js"];
var JS_FILES = APP_JS_FILES.concat(SUPPORT_JS_FILES);
module.exports = function(grunt) {
// Project Configuration
grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
watch: {
js: {
files: APP_JS_FILES,
tasks: ["jshint"],
options: {
livereload: true
}
},
support: {
files: SUPPORT_JS_FILES,
tasks: ["jshint"]
},
html: {
files: ["app/views/**"],
options: {
livereload: true
}
},
css: {
files: ["app/assets/css/**"],
options: {
livereload: true
}
}
},
jshint: {
all: JS_FILES,
options: {
jshintrc: true
}
},
jsbeautifier: {
files: JS_FILES.concat(["app/views/**", "app/assets/css/**"]),
options: {
html: {
braceStyle: "collapse",
indentChar: " ",
indentScripts: "keep",
indentSize: 4,
maxPreserveNewlines: 10,
preserveNewlines: true,
unformatted: ["a", "sub", "sup", "b", "i", "u", "pre"],
wrapLineLength: 0
},
css: {
indentChar: " ",
indentSize: 4
},
js: {
braceStyle: "collapse",
breakChainedMethods: false,
e4x: false,
evalCode: false,
indentChar: " ",
indentLevel: 0,
indentSize: 4,
indentWithTabs: false,
jslintHappy: false,
keepArrayIndentation: false,
keepFunctionIndentation: false,
maxPreserveNewlines: 10,
preserveNewlines: true,
spaceBeforeConditional: true,
spaceInParen: false,
unescapeStrings: false,
wrapLineLength: 0
}
}
},
concurrent: {
tasks: ["nodemon", "watch"],
options: {
logConcurrentOutput: true
}
},
if: {
testSecurityDependenciesInstalled: {
options: {
test: function() {
console.log("Checking to see if chromedriver is installed.");
try {
return require.resolve("chromedriver");
} catch (e) {
console.log(e);
console.log("We will now try to install it.");
console.log("If this fails, please try installing manually,");
console.log("there may be some help here:");
console.log("https://github.com/vuejs/vue-router/issues/261#issuecomment-218618180");
throw e;
}
}
},
ifTrue: ["mochaTest:security"],
ifFalse: ["npm-install:chromedriver@^2.21.2", "mochaTest:security"]
}
},
mochaTest: {
options: {
reporter: "spec"
},
unit: {
src: ["test/unit/*.js"],
},
security: {
src: ["test/security/*.js"]
}
},
env: {
test: {
NODE_ENV: "test"
}
},
retire: {
js: [],
node: ["./"],
options: {
verbose: true,
packageOnly: true,
jsRepository: "https://raw.github.com/bekk/retire.js/master/repository/jsrepository.json",
nodeRepository: "https://raw.github.com/bekk/retire.js/master/repository/npmrepository.json",
}
}
});
// Load NPM tasks
grunt.loadNpmTasks("grunt-contrib-watch");
grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.loadNpmTasks("grunt-mocha-test");
grunt.loadNpmTasks("grunt-nodemon");
grunt.loadNpmTasks("grunt-concurrent");
grunt.loadNpmTasks("grunt-env");
grunt.loadNpmTasks("grunt-jsbeautifier");
grunt.loadNpmTasks("grunt-retire"); // run as: grunt retire
grunt.loadNpmTasks("grunt-if");
grunt.loadNpmTasks("grunt-npm-install");
// Making grunt default to force in order not to break the project.
grunt.option("force", true);
grunt.registerTask("db-reset", "(Re)init the database.", function(arg) {
var finalEnv = process.env.NODE_ENV || arg || "development";
var done;
done = this.async();
var cmd = process.platform === "win32" ? "NODE_ENV=" + finalEnv + " & " : "NODE_ENV=" + finalEnv + " ";
exec(
cmd + "node artifacts/db-reset.js",
function(err, stdout, stderr) {
if (err) {
grunt.log.error("db-reset:");
grunt.log.error(err);
grunt.log.error(stderr);
} else {
grunt.log.ok(stdout);
}
done();
}
);
});
// Code Validation, beautification task(s).
grunt.registerTask("precommit", ["jsbeautifier", "jshint"]);
// Test task.
grunt.registerTask("test", ["env:test", "mochaTest:unit"]);
// Security test task.
grunt.registerTask("testsecurity", ["env:test", "if:testSecurityDependenciesInstalled"]);
// start server.
grunt.registerTask("run", ["precommit", "concurrent"]);
// Default task(s).
grunt.registerTask("default", ["precommit", "concurrent"]);
};