Skip to content

Commit f5e7b9e

Browse files
committed
feat($depends): Depends upgrade
1 parent 43ff931 commit f5e7b9e

File tree

2 files changed

+29
-27
lines changed

2 files changed

+29
-27
lines changed

.travis.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ script:
99
- npm run lint
1010
- npm test
1111
after_success:
12-
- bash <(curl -s https://codecov.io/bash)
13-
deploy:
14-
provider: npm
15-
email: allo.vince@gmail.com
16-
skip_cleanup: true
17-
api_key:
18-
secure: lamZ8IkCac75WHrbmA/WfpGa3xDMTPYDYh1kueFofQenU55w1qHq4AgjtYvYCgjSNwfGQJOaVqnikIh46nD9WTMQUh5UdlLkvI2PSYO+kXwr3VGmDzu+yHG3gwIR03eNgRyRGHKx+6AsUh3iQBp0RYXFx/LM3aHKhL53/PinOIaMzEq0JONPCHIjJOiIaz7k1hyYW7gkAnQam2iq5/jGAN5/czYfq4GgvDf0tu4ItLAEf/myxvJkCAOlpnzpAdB70R9x5HoRUuNrB05twkGyufGL1cdvvXTFeQ5PoAiJ6qh0Rzbs5igGsfxTw/aAPTyL8MbflcBPok5sN705OgeLMz3R0BCg7r0AIf1n6iSYygWw9ZPxTaFKx/QkQgUaDW0vXkuPCqOhIlM5u8rkDGtutigL2BxUZTFO1BZIMOluz1asrR3xoQUG7NjHf4EtCuL0vlloK4/MgrE1vdHoqm8KoZeu/+jIE2OcUZW2BNMm7W1WphVpJYfg9JvDRX3SZ7ziJ86747JBS3EbBFej7PvITQhWqS+iV9+MmOpQ0uNvm9ZSRgM5/cPl2gQvzF/I3q1/8UoD9/f3MokGtChnBb2t0qPXX+zr+bDkd77ZtIXTjN7muYIQl455wiwhCoU1EDN8kthohmxcsvJ4gxQwVuZnw5GD54GaRtQztsYMCVuA7CM=
19-
on:
20-
tags: true
12+
- bash <(curl -s https://codecov.io/bash)
13+
- npm run travis-deploy-once "npm run semantic-release"
14+
branches:
15+
only:
16+
- master
17+
except:
18+
- /^v\d+\.\d+\.\d+$/

package.json

Lines changed: 22 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
{
22
"name": "evaengine",
3-
"version": "0.6.1",
3+
"version": "0.0.0-development",
44
"description": "EvaEngine for Node.js, a micro service development engine",
55
"license": "MIT",
66
"package-lock": false,
77
"repository": {
88
"type": "git",
9-
"url": "git://github.com/EvaEngine/EvaEngine.js.git"
9+
"url": "https://github.com/EvaEngine/EvaEngine.js.git"
1010
},
1111
"scripts": {
1212
"prestart": "npm run build",
1313
"prepublish": "rm -rf ./lib && npm run build",
1414
"ava": "cross-env LOG_LEVEL=error NODE_ENV=test ava --verbose --serial",
1515
"test": "nyc -a --reporter=lcov --reporter=text --reporter=html npm run ava",
1616
"lint": "eslint src/* --ext .js",
17-
"build": "./node_modules/.bin/babel -D -s -d lib/ src/"
17+
"build": "./node_modules/.bin/babel -D -s -d lib/ src/",
18+
"travis-deploy-once": "travis-deploy-once",
19+
"semantic-release": "semantic-release"
1820
},
1921
"engines": {
2022
"node": ">=6.0.0"
@@ -64,14 +66,14 @@
6466
]
6567
},
6668
"dependencies": {
67-
"acorn": "^5.0.3",
69+
"acorn": "^5.4.1",
6870
"app-root-path": "^2.0.1",
6971
"babel-polyfill": "^6.23.0",
7072
"cloud-config-client": "^1.0.0",
71-
"connect-redis": "^3.3.2",
73+
"connect-redis": "^3.3.3",
7274
"constitute": "^1.6.2",
7375
"continuation-local-storage": "^3.2.1",
74-
"doctrine": "^2.0.2",
76+
"doctrine": "^2.1.0",
7577
"express": "^4.15.3",
7678
"express-session": "^1.15.3",
7779
"glob": "^7.1.2",
@@ -80,9 +82,9 @@
8082
"js-yaml": "^3.8.4",
8183
"jwt-simple": "^0.5.1",
8284
"later": "^1.2.0",
83-
"lodash": "^4.17.4",
85+
"lodash": "^4.17.5",
8486
"mkdirp": "^0.5.1",
85-
"moment": "^2.19.4",
87+
"moment": "^2.20.1",
8688
"moment-timezone": "^0.5.13",
8789
"morgan": "^1.8.2",
8890
"mysql": "^2.13.0",
@@ -92,28 +94,30 @@
9294
"request": "^2.81.0",
9395
"request-promise-native": "^1.0.4",
9496
"sequelize": "^3.31.0",
95-
"swagger-ui-dist": "^3.6.1",
97+
"swagger-ui-dist": "^3.10.0",
9698
"winston": "^2.3.1",
97-
"yargs": "^10.0.3"
99+
"yargs": "^11.0.0"
98100
},
99101
"devDependencies": {
100-
"ava": "^0.24.0",
102+
"ava": "^0.25.0",
101103
"babel-cli": "^6.24.1",
102104
"babel-core": "^6.25.0",
103-
"babel-eslint": "^8.0.3",
105+
"babel-eslint": "^8.2.1",
104106
"babel-plugin-transform-builtin-extend": "^1.1.2",
105107
"babel-plugin-transform-decorators-legacy": "^1.3.4",
106108
"babel-plugin-transform-object-rest-spread": "^6.26.0",
107109
"babel-preset-env": "^1.6.1",
108-
"cross-env": "^5.1.1",
109-
"eslint": "^4.13.1",
110+
"cross-env": "^5.1.3",
111+
"eslint": "^4.17.0",
110112
"eslint-config-airbnb": "^16.1.0",
111113
"eslint-plugin-import": "^2.2.0",
112114
"eslint-plugin-jsx-a11y": "^6.0.2",
113-
"eslint-plugin-react": "^7.1.0",
115+
"eslint-plugin-react": "^7.6.1",
114116
"is-type-of": "^1.0.0",
115-
"nock": "^9.1.4",
116-
"nyc": "^11.3.0",
117-
"pre-commit": "^1.2.2"
117+
"nock": "^9.1.6",
118+
"nyc": "^11.4.1",
119+
"pre-commit": "^1.2.2",
120+
"semantic-release": "^12.4.1",
121+
"travis-deploy-once": "^4.3.4"
118122
}
119123
}

0 commit comments

Comments
 (0)