-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.35 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
{
"name": "subfinder",
"version": "1.3.1",
"description": "A CLI app for downloading subtitles.",
"main": "dist/index.jsx",
"scripts": {
"prepare": "husky install",
"prepack": "npm run build",
"release": "standard-version",
"build": "rimraf dist/ && tsc --project tsconfig.build.json",
"test": "jest"
},
"author": "graham.bull@gmail.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/grbull/subfinder.git"
},
"bin": {
"subfinder": "./dist/index.js"
},
"dependencies": {
"adm-zip": "^0.5.5",
"axios": "^0.21.1",
"commander": "^8.0.0",
"ink": "^3.0.9",
"ink-spinner": "^4.0.2",
"jsdom": "^16.6.0",
"react": "^16.14.0",
"string-similarity": "^4.0.4",
"whats-the-release": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/adm-zip": "^0.4.34",
"@types/jest": "^26.0.24",
"@types/jsdom": "^16.2.13",
"@types/react": "^17.0.15",
"@types/string-similarity": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-gbx": "^1.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"standard-version": "^9.3.0",
"ts-jest": "^27.0.3",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"prettier": {
"endOfLine": "lf",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"printWidth": 120
},
"eslintConfig": {
"env": {
"node": true,
"es6": true,
"jest": true
},
"extends": [
"gbx",
"gbx/react",
"gbx/typescript"
],
"rules": {
"max-len": [
"error",
{
"code": 120
}
]
}
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!**/node_modules/**"
],
"transform": {
"^.+\\.ts$": "ts-jest"
}
}
}