Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
evheniy committed Mar 10, 2017
1 parent 12e7afc commit fc00ee7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
language: node_js
node_js:
- "7.0"
- "7.4"
- "7.5"
- "7.6"
- "7.7"
script:
- npm run lint
- npm run test
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ bin/www
package.json

"scripts": {
"start": "node --harmony bin/www"
"start": "node bin/www"
}

## Promise like middleware
Expand Down
4 changes: 1 addition & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -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
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "yeps",
"version": "0.0.17",
"version": "1.0.0",
"description": "Yet Another Event Promised Server",
"main": "index.js",
"scripts": {
"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 @@ -40,8 +40,11 @@
"files": [
"index.js"
],
"engines": {
"node": ">=7.6.0"
},
"dependencies": {
"yeps-promisify": "*"
"yeps-promisify": "^1.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
Expand Down

0 comments on commit fc00ee7

Please sign in to comment.