Skip to content

Commit

Permalink
Merge pull request #203 from jakemmarsh/cross-os-start
Browse files Browse the repository at this point in the history
add and use cross-env lib for setting environment variables
  • Loading branch information
jakemmarsh authored Jun 29, 2016
2 parents 464bdb2 + a99a420 commit 9d3f56a
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "angularjs-gulp-browserify-boilerplate",
"version": "1.6.0",
"version": "1.7.0",
"author": "Jake Marsh <[email protected]>",
"description": "Boilerplate using AngularJS, SASS, Gulp, and Browserify while also utilizing best practices.",
"repository": {
"type": "git",
"url": "https://github.com/jakemmarsh/angularjs-gulp-browserify-boilerplate.git"
},
"license": "MIT",
"keywords": [
"express",
"gulp",
Expand All @@ -22,6 +23,17 @@
"engines": {
"node": "~4.2.x"
},
"scripts": {
"dev": "cross-env NODE_ENV=development ./node_modules/.bin/gulp dev",
"build": "cross-env NODE_ENV=production ./node_modules/.bin/gulp prod",
"deploy": "cross-env NODE_ENV=production ./node_modules/.bin/gulp deploy",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/gulp test",
"protractor": "cross-env NODE_ENV=test ./node_modules/.bin/gulp protractor",
"unit": "cross-env NODE_ENV=test ./node_modules/.bin/gulp unit"
},
"dependencies": {
"cross-env": "^1.0.8"
},
"devDependencies": {
"angular": "^1.5.0",
"angular-mocks": "^1.3.15",
Expand Down Expand Up @@ -76,14 +88,5 @@
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"scripts": {
"dev": "NODE_ENV=development ./node_modules/.bin/gulp dev",
"build": "NODE_ENV=production ./node_modules/.bin/gulp prod",
"deploy": "NODE_ENV=production ./node_modules/.bin/gulp deploy",
"test": "NODE_ENV=test ./node_modules/.bin/gulp test",
"protractor": "NODE_ENV=test ./node_modules/.bin/gulp protractor",
"unit": "NODE_ENV=test ./node_modules/.bin/gulp unit"
},
"license": "MIT"
}
}

0 comments on commit 9d3f56a

Please sign in to comment.