We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c4ab96 commit 7575ebaCopy full SHA for 7575eba
2 files changed
index.js
@@ -4,5 +4,5 @@ var scriptPath = __dirname+'/build/HTMLCS.js';
4
if (fs.existsSync(scriptPath) === true) {
5
module.exports = require(scriptPath);
6
} else {
7
- throw new Error('HTMLCS must be built using `grunt build` before it can be required in Nodejs.');
8
-}
+ throw new Error('HTMLCS must be built using `grunt build` before it can be required in Node.js.');
+}
package.json
@@ -9,8 +9,12 @@
9
],
10
"scripts": {
11
"prepack": "grunt build",
12
+ "build": "grunt build",
13
"test": "echo \"Error: no test specified\" && exit 1"
14
},
15
+ "engines": {
16
+ "node": ">=6"
17
+ },
18
"files": [
19
"Auditor",
20
"build",
0 commit comments