Skip to content

Commit

Permalink
update development dependencies
Browse files Browse the repository at this point in the history
the only development dep that couldn't be updated because of node
version support was lint-staged v8
  • Loading branch information
aoberoi committed Mar 8, 2019
1 parent 4b67aa8 commit 284f096
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 31 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Expand Up @@ -11,8 +11,8 @@
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"stopOnEntry": false,
"args": [
"--opts",
"src/mocha.opts",
"--config",
"src/.mocharc.json",
"--no-timeouts",
"src/*.spec.js",
"src/**/*.spec.js"
Expand Down
48 changes: 25 additions & 23 deletions package.json
Expand Up @@ -30,18 +30,20 @@
},
"scripts": {
"prepublish": "npm run build",
"precommit": "lint-staged",
"prepush": "npm run build",
"lint": "tslint --project .",
"test": "npm run build && npm run test:spec && npm run test:integration",
"test:spec": "nyc mocha --opts src/mocha.opts src/*.spec.js src/**/*.spec.js",
"test:integration": "mocha --opts test/mocha.opts test/typescript/test.ts test/proxy/test.js",
"test:spec": "nyc mocha --config src/.mocharc.json src/*.spec.js src/**/*.spec.js",
"test:integration": "mocha --config test/.mocharc.json test/typescript/test.ts test/proxy/test.js",
"coverage": "codecov",
"build": "npm run build:clean && tsc",
"build:clean": "shx rm -rf ./dist ./coverage ./.nyc_output",
"docs": "node support/jsdoc-to-markdown.js",
"docs:jsdoc": "ts2jsdoc"
},
"husky": {
"pre-push": "npm run build",
"pre-commit": "lint-staged"
},
"dependencies": {
"@types/form-data": "^2.2.1",
"@types/is-stream": "^1.1.0",
Expand All @@ -66,30 +68,30 @@
"ws": "^5.2.0"
},
"devDependencies": {
"@aoberoi/capture-console": "^1.0.0",
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"busboy": "^0.2.14",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"@aoberoi/capture-console": "^1.1.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"busboy": "^0.3.0",
"chai": "^4.2.0",
"codecov": "^3.2.0",
"http-shutdown": "^1.2.0",
"https-proxy-agent": "^2.2.1",
"husky": "^0.14.3",
"husky": "^1.3.1",
"jsdoc-to-markdown": "^4.0.1",
"lint-staged": "^6.1.0",
"mocha": "^5.0.0",
"nock": "^9.1.6",
"lint-staged": "^7.3.0",
"mocha": "^6.0.2",
"nock": "^10.0.6",
"nyc": "^13.3.0",
"p-is-promise": "^1.1.0",
"p-is-promise": "^2.0.0",
"proxy": "^0.2.4",
"shx": "^0.2.2",
"sinon": "^4.2.2",
"source-map-support": "^0.5.3",
"ts-jsdoc": "^3.0.0",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.5.0",
"shx": "^0.3.2",
"sinon": "^7.2.7",
"source-map-support": "^0.5.10",
"ts-jsdoc": "^3.0.1",
"ts-node": "^8.0.3",
"tslint": "^5.13.1",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^2.7.1",
"typings-tester": "^0.3.1"
"typings-tester": "^0.3.2"
}
}
2 changes: 0 additions & 2 deletions src/mocha.opts

This file was deleted.

4 changes: 0 additions & 4 deletions test/mocha.opts

This file was deleted.

0 comments on commit 284f096

Please sign in to comment.