Skip to content

Commit 2d0d3ce

Browse files
committed
Remove obsolete Grunt dependencies.
1 parent 2cda7df commit 2d0d3ce

File tree

2 files changed

+9
-64
lines changed

2 files changed

+9
-64
lines changed

Gruntfile.js

Lines changed: 0 additions & 56 deletions
This file was deleted.

package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,21 @@
1919
},
2020
"license": "MIT",
2121
"devDependencies": {
22-
"grunt": "0.4.5",
23-
"grunt-contrib-uglify": "0.11.0",
24-
"grunt-contrib-jshint": "0.11.3",
25-
"grunt-bump-build-git": "1.1.2",
26-
"grunt-simple-mocha": "0.4.0",
27-
"expect.js": "0.3.1"
22+
"expect.js": "0.3.1",
23+
"jshint": "2.8.0",
24+
"mocha": "2.3.4",
25+
"uglify-js": "2.6.1"
2826
},
2927
"scripts": {
30-
"test": "grunt test"
28+
"test": "jshint js test && mocha",
29+
"build": "uglifyjs js/tmpl.js -c -m > js/tmpl.min.js",
30+
"preversion": "npm test",
31+
"version": "npm run build && git add -A js",
32+
"postversion": "git push origin master --tags && npm publish"
3133
},
3234
"bin": {
3335
"tmpl.js": "js/compile.js"
3436
},
35-
"main": "js/tmpl.js"
3637
"main": "js/tmpl.js",
3738
"jshintConfig": {
3839
"bitwise": true,

0 commit comments

Comments
 (0)