Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
evheniy committed Mar 11, 2017
1 parent 0f1d239 commit 9f3bc08
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
@@ -1,8 +1,7 @@
language: node_js
node_js:
- "7.0"
- "7.4"
- "7.5"
- "7.6"
- "7.7"
services:
- redis-server
script:
Expand Down
4 changes: 1 addition & 3 deletions appveyor.yml
@@ -1,8 +1,6 @@
environment:
matrix:
- nodejs_version: "7.0"
- nodejs_version: "7.4"
- nodejs_version: "7.5"
- nodejs_version: "7.7"
install:
- ps: Install-Product node $env:nodejs_version
- npm install
Expand Down
25 changes: 14 additions & 11 deletions package.json
@@ -1,16 +1,16 @@
{
"name": "yeps-boilerplate",
"version": "0.0.1",
"version": "1.0.0",
"description": "YEPS boilerplate",
"main": "index.js",
"scripts": {
"start": "node --harmony ./bin/www",
"start": "node ./bin/www",
"lint": "./node_modules/.bin/npm-run-all --parallel lint:**",
"lint:js": "./node_modules/.bin/eslint index.js tests",
"test": "./node_modules/.bin/npm-run-all --parallel test:**",
"test:security": "./node_modules/.bin/nsp check",
"test:code": "node --harmony ./node_modules/mocha/bin/_mocha tests --recursive",
"test:coverage": "node --harmony ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- tests --recursive",
"test:code": "node ./node_modules/mocha/bin/_mocha tests --recursive",
"test:coverage": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- tests --recursive",
"report": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"clear": "./node_modules/.bin/rimraf coverage",
"precommit": "npm run lint && npm test",
Expand Down Expand Up @@ -44,6 +44,9 @@
"files": [
"index.js"
],
"engines": {
"node": ">=7.6.0"
},
"dependencies": {
"body-parser": "^1.16.1",
"compression": "^1.6.2",
Expand All @@ -52,12 +55,12 @@
"isomorphic-fetch": "^2.2.1",
"serve-favicon": "^2.4.0",
"serve-static": "^1.11.2",
"yeps": "*",
"yeps-error": "*",
"yeps-express-wrapper": "*",
"yeps-logger": "*",
"yeps-redis": "*",
"yeps-router": "*"
"yeps": "^1.0.0",
"yeps-error": "^1.0.0",
"yeps-express-wrapper": "^1.0.0",
"yeps-logger": "^1.0.0",
"yeps-redis": "^1.0.0",
"yeps-router": "^1.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
Expand All @@ -72,7 +75,7 @@
"mocha-lcov-reporter": "^1.2.0",
"npm-run-all": "^4.0.1",
"nsp": "^2.6.2",
"promise-pause-timeout": "0.0.1",
"promise-pause-timeout": "^1.0.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.7"
}
Expand Down

0 comments on commit 9f3bc08

Please sign in to comment.