Skip to content

Commit

Permalink
Update Grunt (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicbell authored Jan 2, 2024
1 parent caa3d94 commit ee95ce8
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"description": "Attaches JavaScript to HTML without messy selectors.",
"homepage": "http://nicbell.github.io/attach.js/",
"ignore": [
"**/.*",
"*.json",
"*.md",
"*.nuspec"
"**/.*",
"*.json",
"*.md",
"*.nuspec"
],
"main": "attach.js",
"repository": {
Expand All @@ -18,13 +18,15 @@
"license": "MIT",
"keywords": ["javascript", "attach", "DOM"],
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-clean": "~0.5.0"
"grunt": "^1.6.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "^5.2.2"
},

"scripts": {
"test": "grunt travis --verbose"
}
}
"scripts": {
"pretest": "npm i -g grunt-cli && npm i",
"test": "grunt test --verbose",
"pregrunt": "npm i -g grunt-cli && npm i",
"grunt": "grunt"
}
}

0 comments on commit ee95ce8

Please sign in to comment.