Skip to content

Commit eb158c3

Browse files
committed
Add jshint as a dev dependency. Add test and jshint npm script
1 parent 5f1ce9a commit eb158c3

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

package.json

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,16 @@
2424
"author": "Shazron Abdullah",
2525
"license": "MIT",
2626
"dependencies": {
27-
"plist": "^1.2.0",
28-
"simctl": "^0.0.9",
29-
"nopt": "1.0.9",
30-
"bplist-parser" : "^0.0.6"
31-
}
27+
"plist": "^1.2.0",
28+
"simctl": "^0.0.9",
29+
"nopt": "1.0.9",
30+
"bplist-parser": "^0.0.6"
31+
},
32+
"devDependencies": {
33+
"jshint": "^2.9.1"
34+
},
35+
"scripts": {
36+
"test": "npm run jshint",
37+
"jshint": "jshint src ./ios-sim.js"
38+
}
3239
}

0 commit comments

Comments
 (0)