Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/node_modules/eslint-utils/package.json')
-rw-r--r--tools/node_modules/eslint/node_modules/eslint-utils/package.json64
1 files changed, 30 insertions, 34 deletions
diff --git a/tools/node_modules/eslint/node_modules/eslint-utils/package.json b/tools/node_modules/eslint/node_modules/eslint-utils/package.json
index 38ea2a071cd..661a97fb097 100644
--- a/tools/node_modules/eslint/node_modules/eslint-utils/package.json
+++ b/tools/node_modules/eslint/node_modules/eslint-utils/package.json
@@ -1,16 +1,19 @@
{
- "author": {
- "name": "Toru Nagashima"
- },
- "bugs": {
- "url": "https://github.com/mysticatea/eslint-utils/issues"
+ "name": "eslint-utils",
+ "version": "2.1.0",
+ "description": "Utilities for ESLint plugins.",
+ "engines": {
+ "node": ">=6"
},
- "bundleDependencies": false,
+ "sideEffects": false,
+ "main": "index",
+ "module": "index.mjs",
+ "files": [
+ "index.*"
+ ],
"dependencies": {
"eslint-visitor-keys": "^1.1.0"
},
- "deprecated": false,
- "description": "Utilities for ESLint plugins.",
"devDependencies": {
"@mysticatea/eslint-plugin": "^12.0.0",
"codecov": "^3.6.1",
@@ -29,26 +32,8 @@
"vuepress": "^1.2.0",
"warun": "^1.0.0"
},
- "engines": {
- "node": ">=6"
- },
- "files": [
- "index.*"
- ],
- "funding": "https://github.com/sponsors/mysticatea",
- "homepage": "https://github.com/mysticatea/eslint-utils#readme",
- "keywords": [
- "eslint"
- ],
- "license": "MIT",
- "main": "index",
- "module": "index.mjs",
- "name": "eslint-utils",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/mysticatea/eslint-utils.git"
- },
"scripts": {
+ "prebuild": "npm run -s clean",
"build": "rollup -c",
"clean": "rimraf .nyc_output coverage index.*",
"codecov": "nyc report -r lcovonly && codecov",
@@ -56,14 +41,25 @@
"docs:build": "vuepress build docs",
"docs:watch": "vuepress dev docs",
"lint": "eslint src test",
- "postversion": "git push && git push --tags",
- "prebuild": "npm run -s clean",
- "preversion": "npm test && npm run -s build",
- "prewatch": "npm run -s clean",
"test": "run-s lint build test:mocha",
"test:mocha": "nyc mocha --reporter dot \"test/*.js\"",
+ "preversion": "npm test && npm run -s build",
+ "postversion": "git push && git push --tags",
+ "prewatch": "npm run -s clean",
"watch": "warun \"{src,test}/**/*.js\" -- npm run -s test:mocha"
},
- "sideEffects": false,
- "version": "2.1.0"
-} \ No newline at end of file
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/mysticatea/eslint-utils.git"
+ },
+ "keywords": [
+ "eslint"
+ ],
+ "author": "Toru Nagashima",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/mysticatea/eslint-utils/issues"
+ },
+ "homepage": "https://github.com/mysticatea/eslint-utils#readme",
+ "funding": "https://github.com/sponsors/mysticatea"
+}