summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/table/package.json
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2018-10-12 17:56:22 -0400
committercjihrig <cjihrig@gmail.com>2018-10-14 20:11:22 -0400
commitea9df8b4a48f70cdd86c81d9e20b72d4be1bcd73 (patch)
treeaa103c9c5758dafb0d1550c169d9710db2476889 /tools/node_modules/eslint/node_modules/table/package.json
parent6783eedcb93d84362422b6a5d3db4dacfc33f4b3 (diff)
downloadandroid-node-v8-ea9df8b4a48f70cdd86c81d9e20b72d4be1bcd73.tar.gz
android-node-v8-ea9df8b4a48f70cdd86c81d9e20b72d4be1bcd73.tar.bz2
android-node-v8-ea9df8b4a48f70cdd86c81d9e20b72d4be1bcd73.zip
tools: update ESLint to 5.7.0
Update ESLint to 5.7.0. PR-URL: https://github.com/nodejs/node/pull/23629 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Diffstat (limited to 'tools/node_modules/eslint/node_modules/table/package.json')
-rw-r--r--tools/node_modules/eslint/node_modules/table/package.json72
1 files changed, 42 insertions, 30 deletions
diff --git a/tools/node_modules/eslint/node_modules/table/package.json b/tools/node_modules/eslint/node_modules/table/package.json
index a84ae5396b..3e6fcb12d1 100644
--- a/tools/node_modules/eslint/node_modules/table/package.json
+++ b/tools/node_modules/eslint/node_modules/table/package.json
@@ -9,36 +9,48 @@
},
"bundleDependencies": false,
"dependencies": {
- "ajv": "^6.0.1",
- "ajv-keywords": "^3.0.0",
- "chalk": "^2.1.0",
- "lodash": "^4.17.4",
+ "ajv": "^6.5.3",
+ "lodash": "^4.17.10",
"slice-ansi": "1.0.0",
"string-width": "^2.1.1"
},
"deprecated": false,
"description": "Formats data into a string table.",
"devDependencies": {
+ "@babel/cli": "^7.1.2",
+ "@babel/core": "^7.1.2",
+ "@babel/node": "^7.0.0",
+ "@babel/plugin-transform-flow-strip-types": "^7.0.0",
+ "@babel/preset-env": "^7.1.0",
+ "@babel/register": "^7.0.0",
"ajv-cli": "^3.0.0",
- "babel": "^6.23.0",
- "babel-cli": "^6.26.0",
- "babel-core": "^6.26.0",
- "babel-plugin-istanbul": "^4.1.5",
- "babel-preset-es2015-node4": "^2.1.1",
- "babel-register": "^6.26.0",
- "chai": "^4.1.2",
- "eslint": "^4.7.2",
- "eslint-config-canonical": "^9.3.1",
- "gitdown": "^2.5.1",
- "husky": "^0.14.3",
- "mocha": "^5.0.0",
- "nyc": "^11.2.1",
- "sinon": "^4.0.0"
+ "ajv-keywords": "^3.2.0",
+ "babel-plugin-istanbul": "^5.1.0",
+ "babel-plugin-transform-export-default-name": "^2.0.4",
+ "chai": "^4.2.0",
+ "chalk": "^2.4.1",
+ "coveralls": "^3.0.2",
+ "eslint": "^5.6.1",
+ "eslint-config-canonical": "^13.0.0",
+ "flow-bin": "^0.81.0",
+ "flow-copy-source": "^2.0.2",
+ "gitdown": "^2.5.4",
+ "husky": "^1.0.1",
+ "mocha": "^5.2.0",
+ "nyc": "^13.1.0",
+ "semantic-release": "^15.9.16",
+ "sinon": "^6.3.4"
},
"engines": {
- "node": ">=4.0.0"
+ "node": ">=6.0.0"
},
"homepage": "https://github.com/gajus/table#readme",
+ "husky": {
+ "hooks": {
+ "post-commit": "npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify",
+ "pre-commit": "npm run lint && npm run test && npm run build"
+ }
+ },
"keywords": [
"ascii",
"text",
@@ -51,12 +63,14 @@
"name": "table",
"nyc": {
"include": [
- "src/*.js"
+ "src/**/*.js"
],
"instrument": false,
- "lines": 70,
+ "reporter": [
+ "text-lcov"
+ ],
"require": [
- "babel-register"
+ "@babel/register"
],
"sourceMap": false
},
@@ -65,13 +79,11 @@
"url": "git+https://github.com/gajus/table.git"
},
"scripts": {
- "build": "rm -fr ./dist && NODE_ENV=production babel --copy-files ./src --out-dir ./dist && npm run make-validators",
- "lint": "npm run build && eslint ./src ./tests",
- "make-readme": "gitdown ./.README/README.md --output-file ./README.md",
- "make-validators": "ajv compile --all-errors --inline-refs=false -s src/schemas/config -c ajv-keywords/keywords/typeof -o dist/validateConfig.js && ajv compile --all-errors --inline-refs=false -s src/schemas/streamConfig -c ajv-keywords/keywords/typeof -o dist/validateStreamConfig.js",
- "precommit": "npm run lint && npm run test",
- "prepublish": "NODE_ENV=production npm run build",
- "test": "npm run build && nyc --check-coverage mocha"
+ "build": "rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps && npm run create-validators && flow-copy-source src dist",
+ "create-readme": "gitdown ./.README/README.md --output-file ./README.md",
+ "create-validators": "ajv compile --all-errors --inline-refs=false -s src/schemas/config -c ajv-keywords/keywords/typeof -o dist/validateConfig.js && ajv compile --all-errors --inline-refs=false -s src/schemas/streamConfig -c ajv-keywords/keywords/typeof -o dist/validateStreamConfig.js",
+ "lint": "npm run build && eslint ./src ./test && flow",
+ "test": "mocha --require @babel/register"
},
- "version": "4.0.3"
+ "version": "5.1.0"
} \ No newline at end of file