1
0
mirror of synced 2024-12-03 17:06:03 +03:00

update devDependencies (#9)

This commit is contained in:
Akolzin Dmitry 2020-08-18 17:40:00 +03:00 committed by GitHub
parent 19f828cce7
commit 05d2188453
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 974 additions and 1302 deletions

View File

@ -12,10 +12,10 @@ script: npm run test
jobs:
include:
- node_js: 8
- node_js: 10
- node_js: 12
- node_js: 13
- node_js: 14
after_success:
- npm install -g codecov
- npm run report-coverage
@ -33,6 +33,7 @@ jobs:
branch: master
if: branch = master AND type = push AND fork = false
- stage: npm deploy
node_js: 13
script: skip
before_deploy: npm run build
deploy:

2251
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -22,23 +22,21 @@
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.5",
"@rollup/plugin-babel": "^5.2.0",
"babelrc-rollup": "^3.0.0",
"chai": "^4.2.0",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"mocha": "^8.1.1",
"nock": "^10.0.6",
"nyc": "^15.1.0",
"rollup": "^1.2.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0"
"rollup": "^2.26.3"
},
"engines": {
"node": ">= 4.0.0"
"node": ">= 10.0.0"
},
"homepage": "https://github.com/retailcrm/mg-bot-api-client-js#readme",
"repository": {

View File

@ -1,4 +1,4 @@
import babel from 'rollup-plugin-babel';
import babel from '@rollup/plugin-babel';
let pluginOptions = [
babel({
@ -14,4 +14,4 @@ export default [{
format: 'umd',
},
plugins: pluginOptions,
}];
}];