-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.09 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
{
"author": {
"name": "Brandon Scott",
"url": "https://github.com/brandongregoryscott"
},
"dependencies": {
"lodash": "4.17.21",
"minimatch": "9.0.0"
},
"description": "ESLint plugin for making your code easier to read",
"devDependencies": {
"@brandongregoryscott/eslint-config": "1.0.1",
"@types/common-tags": "1.8.1",
"@types/jest": "27.5.1",
"@types/lodash": "4.14.182",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"@typescript-eslint/rule-tester": "7.13.1",
"@typescript-eslint/utils": "7.13.1",
"commitizen": "4.2.4",
"common-tags": "1.8.2",
"cz-conventional-changelog": "3.3.0",
"esbuild": "0.14.43",
"eslint": "8.57.0",
"eslint-plugin-collation": "1.4.2",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-typescript-sort-keys": "3.2.0",
"eslint-remote-tester": "3.0.1",
"eslint-remote-tester-repositories": "2.0.0",
"husky": "7.0.4",
"jest": "28.1.0",
"lint-staged": "13.0.3",
"prettier": "2.6.2",
"semantic-release": "19.0.3",
"ts-jest": "28.0.3",
"typescript": "4.7.2"
},
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"keywords": [
"lint",
"code-style",
"typescript",
"eslint",
"react",
"react-hooks",
"hooks",
"eslint-plugin",
"eslintplugin"
],
"lint-staged": {
"*.{ts,tsx,json,md}": "prettier --ignore-unknown --write",
"*.{ts,tsx}": "eslint --cache --fix"
},
"license": "Apache-2.0",
"main": "dist/index.js",
"name": "eslint-plugin-collation",
"peerDependencies": {
"@typescript-eslint/parser": ">=6 || >=7",
"@typescript-eslint/utils": ">=6 || >=7",
"eslint": ">=7 || >=8"
},
"repository": {
"type": "git",
"url": "https://github.com/brandongregoryscott/eslint-plugin-collation.git"
},
"scripts": {
"build": "esbuild src/index.ts --bundle --outfile=dist/index.js --platform=node --external:eslint --external:@typescript-eslint/utils",
"build:dist": "tsc --noEmit && npm run build -- --minify",
"build:watch": "npm run build -- --watch",
"clean": "rm -rf dist",
"deploy:docs": "cd documentation && yarn install && USE_SSH=true yarn deploy",
"format:check": "prettier src --ignore-unknown --check",
"format:fix": "prettier src --ignore-unknown --write",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"lint:remote": "eslint-remote-tester",
"prepare": "husky install",
"postpublish": "[[ $(git branch --show-current) == $git_main_branch ]] && npm run deploy:docs || echo \"Skipping deploy:docs\"",
"prepublishOnly": "npm run clean && npm run build",
"semantic-release": "semantic-release",
"test": "jest",
"test:watch": "jest --watch"
},
"version": "0.0.0-development"
}