-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "eslint-config-good-code",
"version": "1.1.0",
"description": "A strict eslint configuration for typescript projects promoting good and maintainable coding practices.",
"license": "MIT",
"author": "Ananto Ghosh <https://github.com/anantoghosh/>",
"main": "index.js",
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anantoghosh/eslint-config-good-code.git"
},
"bugs": {
"url": "https://github.com/anantoghosh/eslint-config-good-code/issues"
},
"homepage": "https://github.com/anantoghosh/eslint-config-good-code#readme",
"files": [
"rules/**",
"mit.js",
"index.js"
],
"keywords": [
"eslint",
"config",
"strict",
"code",
"good",
"smell",
"maintainable",
"typescript"
],
"peerDependencies": {
"eslint": ">=7",
"typescript": ">=3.8.0",
"@typescript-eslint/eslint-plugin": ">=4.7.0",
"eslint-plugin-sonarjs": ">=0.6.0",
"eslint-plugin-unicorn": ">=25.0.1"
},
"dependencies": {
"@typescript-eslint/parser": "^4.11.1"
},
"devDependencies": {
"conventional-changelog-cli": "^2.1.1",
"execa": "^5.0.0",
"np": "^7.4.0"
},
"scripts": {
"release": "np --preview",
"release:real": "np",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"test:ci": "node scripts/test.js"
}
}