-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from jakemmarsh/bump-node-npm-versions
clean up package.json, move build task into npm script
- Loading branch information
Showing
3 changed files
with
11 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
language: node_js | ||
node_js: | ||
- '0.12.7' | ||
- '4.2' | ||
branches: | ||
only: | ||
- master | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "react-rocket-boilerplate", | ||
"version": "2.4.1", | ||
"version": "2.5.0", | ||
"author": "Jake Marsh <[email protected]>", | ||
"description": "Boilerplate using React, Browserify, SASS, and Gulp.", | ||
"repository": { | ||
|
@@ -14,11 +14,6 @@ | |
"sass", | ||
"boilerplate" | ||
], | ||
"private": true, | ||
"engines": { | ||
"node": "^0.12.x", | ||
"npm": "^2.1.x" | ||
}, | ||
"devDependencies": { | ||
"babel-core": "^6.3.15", | ||
"babel-eslint": "^5.0.0-beta4", | ||
|
@@ -42,14 +37,14 @@ | |
"gulp-mocha": "^2.1.3", | ||
"gulp-notify": "^2.2.0", | ||
"gulp-rename": "^1.2.2", | ||
"gulp-sass": "^2.0.x", | ||
"gulp-sass": "^2.3.1", | ||
"gulp-sourcemaps": "^1.5.2", | ||
"gulp-streamify": "0.0.5", | ||
"gulp-uglify": "^1.2.0", | ||
"gulp-util": "^3.0.6", | ||
"history": "^1.17.0", | ||
"istanbul": "^0.4.0", | ||
"jsdom": "3.1.2", | ||
"jsdom": "^8.0.2", | ||
"lodash": "^3.10.0", | ||
"mocha": "^2.3.3", | ||
"react": "^0.14.x", | ||
|
@@ -67,7 +62,8 @@ | |
"yargs": "^3.27.0" | ||
}, | ||
"scripts": { | ||
"lint": "./node_modules/.bin/gulp lint", | ||
"test": "./node_modules/.bin/gulp test" | ||
"lint": "NODE_ENV=test ./node_modules/.bin/gulp lint", | ||
"test": "NODE_ENV=test ./node_modules/.bin/gulp test", | ||
"build": "NODE_ENV=production ./node_modules/.bin/gulp prod" | ||
} | ||
} |