-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.98 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
{
"name": "eslint-plugin-hunt-club",
"version": "0.1.0",
"description": "Provides custom linting rules from Hunt Club.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/huntclub/eslint-plugin-hunt-club"
},
"bugs": {
"url": "https://github.com/huntclub/eslint-plugin-hunt-club/issues"
},
"homepage": "https://github.com/huntclub/eslint-plugin-hunt-club#readme",
"files": [
"dist/**/*"
],
"author": "Mark Faga <[email protected]>",
"keywords": [
"eslint",
"huntclub",
"hunt club",
"tslint",
"lint",
"linting",
"rules"
],
"license": "MIT",
"scripts": {
"build": "rm -rf dist && ./node_modules/typescript/bin/tsc",
"build:post": "node ./scripts/cleanPackageJson.js",
"docs": "doctoc README.md CONTRIBUTING.md",
"lint": "eslint --max-warnings=0",
"lint:fix": "yarn lint --fix",
"format": "yarn prettier -l .",
"format:fix": "yarn prettier --write .",
"test": "jest",
"test:coverage": "jest --coverage",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest --runInBand",
"test:watch": "jest --watch",
"test:changed": "jest --onlyChanged --passWithNoTests --forceExit",
"ts:check": "tsc --noEmit"
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@types/eslint": "^8.37.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"babel-jest": "^29.5.0",
"doctoc": "^2.2.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-filename-rules": "^1.3.1",
"eslint-plugin-only-warn": "^1.1.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}