diff options
| author | John-Philip Johansson <[email protected]> | 2013-05-04 16:55:52 +0200 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2013-07-26 00:39:14 -0700 |
| commit | 0d33455ef486d0cf06cb29d427efda57f42f7ea9 (patch) | |
| tree | f7ddc320adff7ed7bed55b90665bb1dad3e8e01e /package.json | |
| parent | 995add132efdb6557f191f1a65097f19260a4f7d (diff) | |
| download | bootstrap-0d33455ef486d0cf06cb29d427efda57f42f7ea9.tar.xz bootstrap-0d33455ef486d0cf06cb29d427efda57f42f7ea9.zip | |
Replace Makefile with GruntJS
A rebase (against soon-to-be 3.0.0-rc.1) & squash of
https://github.com/twbs/bootstrap/pull/7786 AKA
https://github.com/twitter/bootstrap/pull/7786
originally by
@seriema
@mokkabonna
@jojohess
Rebased by @cvrebert
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/package.json b/package.json index 8115cdeb9..e9e8fd29c 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ , "keywords": ["bootstrap", "css"] , "homepage": "http://twbs.github.com/bootstrap/" , "author": "Twitter Inc." - , "scripts": { "test": "make test" } + , "scripts": { "test": "grunt test" } , "repository": { "type": "git" , "url": "https://github.com/twbs/bootstrap.git" @@ -17,9 +17,14 @@ } ] , "devDependencies": { - "uglify-js": "1.3.4" - , "jshint": "2.1.2" - , "recess": "1.1.7" - , "connect": "2.1.3" + "grunt": "~0.4.1" + , "grunt-contrib-connect": "~0.3.0" + , "grunt-contrib-clean": "~0.5.0" + , "grunt-contrib-concat": "~0.3.0" + , "grunt-contrib-jshint": "~0.6.0" + , "grunt-contrib-uglify": "~0.2.2" + , "grunt-contrib-qunit": "~0.2.2" + , "grunt-contrib-watch": "~0.5.1" + , "grunt-recess": "~0.3.3" } } |
