Skip to content

Commit

Permalink
Add package.json, closes #73
Browse files Browse the repository at this point in the history
  • Loading branch information
lucassus committed Jun 11, 2013
1 parent dc2044e commit 83680c9
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -8,7 +8,8 @@ services:
- mongodb

before_script:
- "npm install -g grunt-cli karma --quiet"
- "npm install -g grunt-cli karma"
- "npm install grunt"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"

Expand Down
30 changes: 30 additions & 0 deletions package.json
@@ -0,0 +1,30 @@
{
"name": "mongo_browser",
"version": "0.0.1",
"description": "[![Build status](https://secure.travis-ci.org/lucassus/mongo_browser.png)](http://travis-ci.org/lucassus/mongo_browser) [![Dependency Status](https://gemnasium.com/lucassus/mongo_browser.png)](http://gemnasium.com/lucassus/mongo_browser) [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/lucassus/mongo_browser)",
"main": "Gruntfile.js",
"dependencies": {
"grunt": "~0.4.1",
"grunt-cli": "~0.1.9",
"karma": "~0.8.5"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/lucassus/mongo_browser.git"
},
"keywords": [
"mongodb",
"angularjs"
],
"author": "Lukasz Bandzarewicz",
"license": "BSD",
"readmeFilename": "README.md",
"gitHead": "dc2044e1f9d67c258b30c5b4c5efcd53067697c8",
"bugs": {
"url": "https://github.com/lucassus/mongo_browser/issues"
}
}
2 changes: 1 addition & 1 deletion script/ci_javascripts
@@ -1,4 +1,4 @@
#!/bin/bash

grunt --gruntfile Gruntfile.js html2js
grunt html2js
karma start spec/javascripts/config/karma.conf.js --single-run

0 comments on commit 83680c9

Please sign in to comment.