-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run javascript build on travis ci (#6)
* Add js build to travis * Cleanup JS * Reduce package.json for now * Reduce package.json for now * Remove ng-annotate as we don't minify code and it fails on travis cis node version * Ignore tests for now
- Loading branch information
1 parent
1e1891a
commit e319c2e
Showing
4 changed files
with
28 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,28 @@ | ||
{ | ||
"name": "deck", | ||
"description": "Deck owncloud app", | ||
"version": "0.1.0", | ||
"private": true, | ||
"homepage": "https://github.com/juliushaertl/deck", | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:juliushaertl/deck.git" | ||
}, | ||
"dependencies": { | ||
"karma": "^1.1.1", | ||
"bower": "*", | ||
"grunt": "*" | ||
"version": "1.0.0", | ||
"main": "Gruntfile.js", | ||
"directories": { | ||
"test": "tests" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"grunt-cli": "*", | ||
"grunt-contrib-concat": "*", | ||
"grunt-contrib-jshint": "*", | ||
"grunt-contrib-watch": "*", | ||
"grunt-karma": "*", | ||
"grunt-ng-annotate": "^1.0.1", | ||
"grunt-phpunit": "*", | ||
"grunt-wrap": "*", | ||
"jasmine-core": "*", | ||
"jshint-stylish": "^2.1.0", | ||
"karma": "*", | ||
"karma-chrome-launcher": "*", | ||
"karma-coverage": "*", | ||
"karma-firefox-launcher": "*", | ||
"karma-jasmine": "*", | ||
"karma-phantomjs-launcher": "*", | ||
"phantomjs": "*" | ||
"bower": "^1.8.0", | ||
"grunt": "^1.0.1", | ||
"grunt-contrib-concat": "^1.0.1", | ||
"grunt-contrib-jshint": "^1.1.0", | ||
"grunt-contrib-watch": "^1.0.0", | ||
"grunt-karma": "^2.0.0", | ||
"grunt-phpunit": "^0.3.6", | ||
"grunt-wrap": "^0.3.0", | ||
"jshint-stylish": "^2.2.1", | ||
"karma": "^1.4.1" | ||
}, | ||
"scripts": { | ||
"test": "echo \"Warning: no test specified\" && exit 0" | ||
}, | ||
"engine": "node >= 0.8" | ||
"author": "", | ||
"license": "AGPL-3.0", | ||
"keywords": [], | ||
"description": "" | ||
} |