Skip to content

Commit

Permalink
fix(Add missing npm modules): Fix missing modules and incorrect paths…
Browse files Browse the repository at this point in the history
… that reuslted from dropping bo
  • Loading branch information
dalelotts committed Jan 25, 2016
1 parent 236fadc commit da7b8c3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"moment": "^2.x"
},
"devDependencies": {
"angular-mocks": "^1.x",
"bower": "latest",
"cz-conventional-changelog": "^1.1.5",
"grunt": "^0.4.4",
Expand All @@ -27,6 +28,7 @@
"gulp-jscs": "^3.0.2",
"gulp-jshint": "^2.0.0",
"jasmine-core": "^2.4.1",
"jquery": "^2.2.0",
"jshint": "^2.9.1",
"jshint-stylish": "^2.1.0",
"karma": "^0.13.19",
Expand All @@ -41,9 +43,9 @@
"phantomjs": "^1.9.19",
"plato": "^1.5.0",
"run-browser": "^2.0.2",
"semantic-release": "^4.3.5",
"standard": "^5.4.1",
"tape": "^4.4.0",
"semantic-release": "^4.3.5"
"tape": "^4.4.0"
},
"scripts": {
"test": "npm run test-browserify && gulp",
Expand Down
8 changes: 4 additions & 4 deletions paths.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/* jshint node:true */

var bower = [
'bower_components/jquery/dist/jquery.js',
'bower_components/moment/moment.js',
'bower_components/angular/angular.js',
'bower_components/angular-mocks/angular-mocks.js'
'node_modules/jquery/dist/jquery.js',
'node_modules/moment/moment.js',
'node_modules/angular/angular.js',
'node_modules/angular-mocks/angular-mocks.js'
];
var bumpFiles = ['package.json', 'bower.json', 'README.md', 'src/js/*.js'];
var miscFiles = ['GruntFile.js', 'gulpfile.js', 'karma.conf.js', 'paths.js'];
Expand Down

0 comments on commit da7b8c3

Please sign in to comment.