We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2f27f3 commit 2eccbd6Copy full SHA for 2eccbd6
package.json
@@ -8,13 +8,34 @@
8
},
9
"main": "./index.js",
10
"scripts": {
11
- "test": "node tests/test.js"
+ "test": "node tests/test.js && jshint *.js"
12
13
"dependencies": {},
14
- "devDependencies": {},
+ "devDependencies": {
15
+ "jshint": "2"
16
+ },
17
"optionalDependencies": {},
18
"engines": {
19
"node": "*"
20
- "license": "BSD-like"
-}
21
+ "license": "BSD-like",
22
+ "jshintConfig": {
23
+ "eqeqeq": true,
24
+ "freeze": true,
25
+ "latedef": "nofunc",
26
+ "noarg": true,
27
+ "nonbsp": true,
28
+ "quotmark": "double",
29
+ "undef": true,
30
+ "unused": true,
31
+ "trailing": true,
32
+ "eqnull": true,
33
+ "proto": true,
34
+ "smarttabs": true,
35
+ "node": true,
36
+ "globals": {
37
+ "describe": true,
38
+ "it": true
39
+ }
40
41
+}
0 commit comments