eslint-plugin-node-dependencies 0.6.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,100 +1,103 @@
1
1
  {
2
- "name": "eslint-plugin-node-dependencies",
3
- "version": "0.6.0",
4
- "description": "ESLint plugin to check Node.js dependencies.",
5
- "engines": {
6
- "node": "^12 || >=14"
7
- },
8
- "main": "dist/index.js",
9
- "files": [
10
- "dist"
11
- ],
12
- "scripts": {
13
- "prebuild": "npm run -s clean",
14
- "build": "tsc --project ./tsconfig.build.json",
15
- "clean": "rimraf .nyc_output dist coverage",
16
- "lint": "eslint . --ext .js,.vue,.ts,.json,.yaml,.yml",
17
- "eslint-fix": "eslint . --ext .js,.vue,.ts,.json,.yaml,.yml --fix",
18
- "pretest": "npm run build",
19
- "test:base": "mocha --require ts-node/register \"tests/**/*.ts\" --reporter dot --timeout 60000",
20
- "test": "npm run test:nyc",
21
- "test:nyc": "nyc --reporter=lcov npm run test:base",
22
- "test:debug": "mocha --require ts-node/register/transpile-only \"tests/**/*.ts\" --reporter dot --timeout 60000",
23
- "test:watch": "npm run test:base -- --watch",
24
- "update": "ts-node --transpile-only ./tools/update.ts && npm run eslint-fix",
25
- "new": "ts-node ./tools/new-rule.ts",
26
- "docs:watch": "vuepress dev --debug docs",
27
- "docs:build": "npm run build && vuepress build docs --no-cache",
28
- "preversion": "npm test && git add .",
29
- "version": "env-cmd -e version npm run update && git add ."
30
- },
31
- "repository": {
32
- "type": "git",
33
- "url": "git+https://github.com/ota-meshi/eslint-plugin-node-dependencies.git"
34
- },
35
- "keywords": [
36
- "eslint",
37
- "eslintplugin",
38
- "eslint-plugin",
39
- "nodejs",
40
- "dependencies",
41
- "json"
42
- ],
43
- "author": "Yosuke Ota (https://github.com/ota-meshi)",
44
- "license": "MIT",
45
- "bugs": {
46
- "url": "https://github.com/ota-meshi/eslint-plugin-node-dependencies/issues"
47
- },
48
- "homepage": "https://github.com/ota-meshi/eslint-plugin-node-dependencies#readme",
49
- "peerDependencies": {
50
- "eslint": ">=6.0.0"
51
- },
52
- "devDependencies": {
53
- "@ota-meshi/eslint-plugin": "^0.10.0",
54
- "@types/chai": "^4.2.18",
55
- "@types/eslint": "^7.2.0",
56
- "@types/eslint-scope": "^3.7.0",
57
- "@types/eslint-visitor-keys": "^1.0.0",
58
- "@types/estree": "^0.0.50",
59
- "@types/mocha": "^9.0.0",
60
- "@types/node": "^16.0.0",
61
- "@types/npm-package-arg": "^6.1.1",
62
- "@types/semver": "^7.3.8",
63
- "@typescript-eslint/eslint-plugin": "^5.0.0",
64
- "@typescript-eslint/parser": "^5.0.0",
65
- "chai": "^4.3.4",
66
- "env-cmd": "^10.1.0",
67
- "eslint": "^8.0.0",
68
- "eslint-config-prettier": "^8.0.0",
69
- "eslint-plugin-eslint-comments": "^3.2.0",
70
- "eslint-plugin-eslint-plugin": "^4.0.0",
71
- "eslint-plugin-json-schema-validator": "^1.0.9",
72
- "eslint-plugin-jsonc": "^2.0.0",
73
- "eslint-plugin-node": "^11.1.0",
74
- "eslint-plugin-node-dependencies": "^0.5.0",
75
- "eslint-plugin-prettier": "^4.0.0",
76
- "eslint-plugin-regexp": "^1.0.0",
77
- "eslint-plugin-vue": "^8.0.0",
78
- "eslint-plugin-yml": "^0.10.0",
79
- "eslint4b": "^7.3.1",
80
- "mocha": "^9.0.0",
81
- "mocha-chai-jest-snapshot": "^1.1.2",
82
- "nyc": "^15.1.0",
83
- "prettier": "^2.0.5",
84
- "raw-loader": "^4.0.1",
85
- "stylelint": "^14.0.0",
86
- "stylelint-config-recommended-vue": "^1.0.0",
87
- "stylelint-config-standard": "^23.0.0",
88
- "stylelint-plugin-stylus": "^0.13.0",
89
- "ts-node": "^10.0.0",
90
- "typescript": "^4.0.0",
91
- "vue-eslint-editor": "^1.1.0",
92
- "vue-eslint-parser": "^8.0.0",
93
- "vuepress": "^1.5.2"
94
- },
95
- "dependencies": {
96
- "jsonc-eslint-parser": "^1 || ^2.0.2",
97
- "npm-package-arg": "^8.1.5",
98
- "semver": "^7.3.5"
99
- }
2
+ "name": "eslint-plugin-node-dependencies",
3
+ "version": "0.9.0",
4
+ "description": "ESLint plugin to check Node.js dependencies.",
5
+ "engines": {
6
+ "node": ">=14.17.0"
7
+ },
8
+ "main": "dist/index.js",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "prebuild": "npm run -s clean",
14
+ "build": "tsc --project ./tsconfig.build.json",
15
+ "clean": "rimraf .nyc_output dist coverage",
16
+ "lint": "eslint . --ext .js,.vue,.ts,.json,.yaml,.yml",
17
+ "eslint-fix": "eslint . --ext .js,.vue,.ts,.json,.yaml,.yml --fix",
18
+ "pretest": "npm run build",
19
+ "test:base": "mocha --require ts-node/register \"tests/**/*.ts\" --reporter dot --timeout 60000",
20
+ "test": "npm run test:nyc",
21
+ "test:nyc": "nyc --reporter=lcov npm run test:base",
22
+ "test:debug": "mocha --require ts-node/register/transpile-only \"tests/**/*.ts\" --reporter dot --timeout 60000",
23
+ "test:watch": "npm run test:base -- --watch",
24
+ "update": "ts-node --transpile-only ./tools/update.ts && npm run eslint-fix",
25
+ "new": "ts-node ./tools/new-rule.ts",
26
+ "docs:watch": "export NODE_OPTIONS=--openssl-legacy-provider && vuepress dev --debug docs",
27
+ "docs:build": "export NODE_OPTIONS=--openssl-legacy-provider && npm run build && vuepress build docs --no-cache",
28
+ "preversion": "npm test && git add .",
29
+ "version": "env-cmd -e version npm run update && git add ."
30
+ },
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "git+https://github.com/ota-meshi/eslint-plugin-node-dependencies.git"
34
+ },
35
+ "keywords": [
36
+ "eslint",
37
+ "eslintplugin",
38
+ "eslint-plugin",
39
+ "nodejs",
40
+ "dependencies",
41
+ "json"
42
+ ],
43
+ "author": "Yosuke Ota (https://github.com/ota-meshi)",
44
+ "funding": "https://github.com/sponsors/ota-meshi",
45
+ "license": "MIT",
46
+ "bugs": {
47
+ "url": "https://github.com/ota-meshi/eslint-plugin-node-dependencies/issues"
48
+ },
49
+ "homepage": "https://github.com/ota-meshi/eslint-plugin-node-dependencies#readme",
50
+ "peerDependencies": {
51
+ "eslint": ">=6.0.0"
52
+ },
53
+ "devDependencies": {
54
+ "@ota-meshi/eslint-plugin": "^0.11.0",
55
+ "@types/chai": "^4.2.18",
56
+ "@types/eslint": "^8.0.0",
57
+ "@types/eslint-scope": "^3.7.0",
58
+ "@types/eslint-visitor-keys": "^1.0.0",
59
+ "@types/estree": "^0.0.52",
60
+ "@types/mocha": "^9.0.0",
61
+ "@types/node": "^16.0.0",
62
+ "@types/npm-package-arg": "^6.1.1",
63
+ "@types/semver": "^7.3.8",
64
+ "@typescript-eslint/eslint-plugin": "^5.0.0",
65
+ "@typescript-eslint/parser": "^5.0.0",
66
+ "chai": "^4.3.4",
67
+ "env-cmd": "^10.1.0",
68
+ "eslint": "^8.0.0",
69
+ "eslint-config-prettier": "^8.0.0",
70
+ "eslint-plugin-eslint-comments": "^3.2.0",
71
+ "eslint-plugin-eslint-plugin": "^4.0.0",
72
+ "eslint-plugin-json-schema-validator": "^3.0.0",
73
+ "eslint-plugin-jsonc": "^2.0.0",
74
+ "eslint-plugin-node": "^11.1.0",
75
+ "eslint-plugin-node-dependencies": "^0.8.0",
76
+ "eslint-plugin-prettier": "^4.0.0",
77
+ "eslint-plugin-regexp": "^1.0.0",
78
+ "eslint-plugin-vue": "^9.0.0",
79
+ "eslint-plugin-yml": "^1.0.0",
80
+ "eslint4b": "^7.3.1",
81
+ "mocha": "^10.0.0",
82
+ "mocha-chai-jest-snapshot": "^1.1.2",
83
+ "nyc": "^15.1.0",
84
+ "prettier": "^2.0.5",
85
+ "raw-loader": "^4.0.1",
86
+ "stylelint": "^14.0.0",
87
+ "stylelint-config-recommended-vue": "^1.0.0",
88
+ "stylelint-config-standard": "^26.0.0",
89
+ "stylelint-stylus": "^0.16.0",
90
+ "ts-node": "^10.0.0",
91
+ "typescript": "^4.0.0",
92
+ "vue-eslint-editor": "^1.1.0",
93
+ "vue-eslint-parser": "^9.0.0",
94
+ "vuepress": "^1.5.2"
95
+ },
96
+ "dependencies": {
97
+ "jsonc-eslint-parser": "^2.0.2",
98
+ "npm-package-arg": "^9.0.0",
99
+ "package-json": "^8.1.0",
100
+ "semver": "^7.3.5",
101
+ "synckit": "^0.7.1"
102
+ }
100
103
  }