This repository was archived by the owner on Jun 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 KB
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
{
"name": "@titicaca/eslint-config-triple",
"version": "5.3.1",
"description": "Triple's ESLint config, following our styleguide.",
"license": "MIT",
"main": "index.js",
"files": [
"*.js"
],
"homepage": "https://github.com/titicacadev/triple-config-kit",
"bugs": {
"url": "https://github.com/titicacadev/triple-config-kit/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/titicacadev/triple-config-kit.git",
"directory": "packages/eslint-config-triple"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "npm run lint:es; npm run prettier",
"lint:fix": "npm run lint:es:fix; npm run prettier:fix",
"lint:es": "eslint '**/*.js'",
"lint:es:fix": "eslint '**/*.js' --fix",
"prettier": "prettier '**/*' --check",
"prettier:fix": "prettier '**/*' --write",
"update-snapshot": "jest -u",
"test:watch": "jest --watch",
"test": "jest"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "8.18.2",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-jsx": "11.0.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0"
},
"devDependencies": {
"eslint": "^8.57.1"
},
"peerDependencies": {
"eslint": "^8.0.0"
}
}