Merge pull request #81 from thomasboyt/grunt
Move from Rake-based build to Grunt
Showing
Gemfile
deleted
100644 → 0
source "https://rubygems.org" | ||
gem "rake" |
Gemfile.lock
deleted
100644 → 0
Gruntfile.js
0 → 100644
Rakefile
deleted
100644 → 0
browser/rsvp.amd.js
deleted
100644 → 0
browser/rsvp.js
deleted
100644 → 0
browser/rsvp.min.js
deleted
100644 → 0
lib/loader.js
deleted
100644 → 0
... | ... | @@ -2,23 +2,31 @@ |
"name": "rsvp", | ||
"version": "2.0.0", | ||
"description": "A lightweight library that provides tools for organizing asynchronous code", | ||
"main": "main.js", | ||
"directories": { "lib": "lib" }, | ||
"main": "dist/commonjs/main.js", | ||
"directories": { | ||
"lib": "lib" | ||
}, | ||
"devDependencies": { | ||
"jshint": "~0.9", | ||
"promise-tests": "2.0.0", | ||
"uglify-js": "~2.2", | ||
"es6-module-transpiler": "~0.1.2" | ||
"grunt": "~0.4.1", | ||
"grunt-microlib": "git://github.com/thomasboyt/grunt-microlib.git", | ||
"promises-aplus-tests": "~1.3.1", | ||
"grunt-browserify": "~1.0.2", | ||
"grunt-mocha-phantomjs": "~0.2.8", | ||
"grunt-mocha-test": "~0.4.0" | ||
}, | ||
"scripts": { | ||
"test": "promise-tests all ./tests/test-adapter", | ||
"lint": "jshint lib" | ||
"test": "grunt test", | ||
"lint": "jshint lib", | ||
"prepublish": "grunt build" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/tildeio/rsvp.js.git" | ||
}, | ||
"bugs": { "url": "https://github.com/tildeio/rsvp.js/issues" }, | ||
"bugs": { | ||
"url": "https://github.com/tildeio/rsvp.js/issues" | ||
}, | ||
"keywords": [ | ||
"promises", | ||
"futures", | ||
... | ... |
This source diff could not be displayed because it is too large. You can view the blob instead.
Please register or sign in to comment