summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/ajv/package.json
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2019-02-27 22:32:31 -0800
committerRich Trott <rtrott@gmail.com>2019-03-01 22:55:28 -0800
commitf11e8b959dce355bbb21fa2f95108732db464897 (patch)
treefbb6a56d2e138bfcf1531e0abf2d09166b87dcdd /tools/node_modules/eslint/node_modules/ajv/package.json
parente0c39218d988acc3e9fdd61829118ae5aa33e9a0 (diff)
downloadandroid-node-v8-f11e8b959dce355bbb21fa2f95108732db464897.tar.gz
android-node-v8-f11e8b959dce355bbb21fa2f95108732db464897.tar.bz2
android-node-v8-f11e8b959dce355bbb21fa2f95108732db464897.zip
tools: update eslint-plugin-markdown to 1.0.0
For eslint-plugin-markdown, we had been using an RC but can now use the most recent stable release of 1.0.0, as it has the bugfix that caused us to start using the RC in the first place. There are a few other updates in this commit too because it was performed by running `update-eslint.sh`. This did not update ESLint itself but did update some dependencies. PR-URL: https://github.com/nodejs/node/pull/26345 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'tools/node_modules/eslint/node_modules/ajv/package.json')
-rw-r--r--tools/node_modules/eslint/node_modules/ajv/package.json22
1 files changed, 12 insertions, 10 deletions
diff --git a/tools/node_modules/eslint/node_modules/ajv/package.json b/tools/node_modules/eslint/node_modules/ajv/package.json
index 220426eb13..8a3e91d7be 100644
--- a/tools/node_modules/eslint/node_modules/ajv/package.json
+++ b/tools/node_modules/eslint/node_modules/ajv/package.json
@@ -34,8 +34,8 @@
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.1.1",
"karma-sauce-launcher": "^2.0.0",
- "mocha": "^5.1.1",
- "nyc": "^12.0.1",
+ "mocha": "^6.0.0",
+ "nyc": "^13.2.0",
"pre-commit": "^1.1.1",
"require-globify": "^1.3.0",
"typescript": "^2.8.3",
@@ -78,23 +78,25 @@
"url": "git+https://github.com/epoberezkin/ajv.git"
},
"scripts": {
- "build": "del-cli lib/dotjs/*.js '!lib/dotjs/index.js' && node scripts/compile-dots.js",
+ "build": "del-cli lib/dotjs/*.js \"!lib/dotjs/index.js\" && node scripts/compile-dots.js",
"bundle": "del-cli dist && node ./scripts/bundle.js . Ajv pure_getters",
"bundle-beautify": "node ./scripts/bundle.js js-beautify",
- "eslint": "eslint lib/*.js lib/compile/*.js spec/*.js scripts",
- "jshint": "jshint lib/*.js lib/**/*.js --exclude lib/dotjs/**/*",
+ "eslint": "eslint lib/{compile/,}*.js spec/{**/,}*.js scripts --ignore-pattern spec/JSON-Schema-Test-Suite",
+ "jshint": "jshint lib/{compile/,}*.js",
+ "lint": "npm run jshint && npm run eslint",
"prepublish": "npm run build && npm run bundle",
- "test": "npm run jshint && npm run eslint && npm run test-ts && npm run build && npm run test-cov && if-node-version 8 npm run test-browser",
+ "test": "npm run lint && npm run build && npm run test-all",
+ "test-all": "npm run test-ts && npm run test-cov && if-node-version 10 npm run test-browser",
"test-browser": "del-cli .browser && npm run bundle && scripts/prepare-tests && npm run test-karma",
"test-cov": "nyc npm run test-spec",
- "test-debug": "mocha spec/*.spec.js --debug-brk -R spec",
+ "test-debug": "npm run test-spec -- --inspect-brk",
"test-fast": "AJV_FAST_TEST=true npm run test-spec",
"test-karma": "karma start",
- "test-spec": "mocha spec/*.spec.js -R spec",
+ "test-spec": "mocha spec/{**/,}*.spec.js -R spec",
"test-ts": "tsc --target ES5 --noImplicitAny --noEmit spec/typescript/index.ts",
- "watch": "watch 'npm run build' ./lib/dot"
+ "watch": "watch \"npm run build\" ./lib/dot"
},
"tonicExampleFilename": ".tonic_example.js",
"typings": "lib/ajv.d.ts",
- "version": "6.9.1"
+ "version": "6.9.2"
} \ No newline at end of file