forked from mightyiam/eslint-config-love
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.86 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "eslint-config-standard-with-typescript",
"version": "21.0.1",
"description": "An ESLint Shareable Config for JavaScript Standard Style with TypeScript support",
"main": "lib/index.js",
"scripts": {
"compile": "tsc",
"lint": "eslint --ext .js,.ts .",
"editorconfig": "editorconfig-checker",
"unit": "ava",
"test": "run-s clean-artifacts editorconfig compile lint unit",
"clean-artifacts": "git clean lib -X --force",
"is-code-clean": "git diff-index HEAD --quiet",
"prepare-release": "run-s is-code-clean bump-and-commit",
"bump-and-commit": "standard-version --skip.tag",
"prepublishOnly": "run-s is-code-clean test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/standard/eslint-config-standard-with-typescript.git"
},
"author": "Shahar Or <mightyiampresence@gmail.com> (mightyiam)",
"license": "MIT",
"bugs": {
"url": "https://github.com/standard/eslint-config-standard-with-typescript/issues"
},
"homepage": "https://github.com/standard/eslint-config-standard-with-typescript#readme",
"keywords": [
"JavaScript Standard Style",
"check",
"checker",
"code",
"code checker",
"code linter",
"code standards",
"code style",
"enforce",
"eslint",
"eslintconfig",
"hint",
"jscs",
"jshint",
"lint",
"policy",
"quality",
"simple",
"standard",
"standard style",
"style",
"style checker",
"style linter",
"verify",
"TypeScript"
],
"dependencies": {
"@typescript-eslint/parser": "^5.0.0",
"eslint-config-standard": "^16.0.0"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^4.0.1 || ^5.0.0",
"eslint": "^7.12.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1 || ^5.0.0",
"typescript": "*"
},
"devDependencies": {
"@arkweid/lefthook": "0.7.7",
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@commitlint/travis-cli": "16.2.3",
"@types/eslint": "7.29.0",
"@types/js-yaml": "4.0.5",
"@types/node": "17.0.21",
"@types/npm-package-arg": "6.1.1",
"@types/semver": "7.3.9",
"@typescript-eslint/eslint-plugin": "5.15.0",
"ava": "4.1.0",
"editorconfig-checker": "4.0.2",
"eslint": "7.32.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.2.0",
"fs.promises": "0.1.2",
"inclusion": "1.0.1",
"js-yaml": "4.1.0",
"npm-package-arg": "9.0.1",
"npm-run-all": "4.1.5",
"read-pkg-up": "8.0.0",
"runtypes": "6.5.1",
"semver": "7.3.5",
"standard-version": "9.3.2",
"tsconfigs": "5.0.0",
"typescript": "4.5.5"
},
"files": [
"lib/index.js",
"lib/index.d.ts",
"lib/eslint-config-standard.js",
"lib/eslint-config-standard.d.ts"
]
}