-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.76 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
{
"name": "eslint-config-atomic",
"version": "1.22.1",
"description": "Eslint config used in atom-ide-community",
"repository": "https://github.com/atom-ide-community/eslint-config-atomic",
"license": "MIT",
"author": "Amin Yahyaabadi",
"type": "commonjs",
"main": "index.js",
"files": [
"src",
"dist",
"*.cjs",
"*.js"
],
"scripts": {
"build": "tsc",
"bump": "ncu -u -x coffeescript,execa,read-pkg-up,make-synchronous && pnpm update && pnpm dedupe",
"clean": "shx rm -rf ./spec/fixtures/ ./dist",
"format": "prettier --write .",
"lint": "eslint . --ignore-pattern ./spec/fixtures/ --fix",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run clean && pnpm run build",
"test": "node ./spec/test.cjs",
"test.format": "prettier . --check",
"test.lint": "eslint . --ignore-pattern spec/fixtures/**"
},
"prettier": "prettier-config-atomic",
"dependencies": {
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/plugin-syntax-flow": "^7.24.7",
"@babel/plugin-syntax-jsx": "^7.24.7",
"@typescript-eslint/eslint-plugin": "7.13.0",
"@typescript-eslint/parser": "7.13.0",
"anymatch": "^3.1.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.34.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-only-warn": "npm:@aminya/eslint-plugin-only-warn@^1.2.2",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-solid": "^0.14.0",
"eslint-plugin-yaml": "^0.5.0",
"globify-gitignore": "^1.0.3",
"make-synchronous": "^0.1.1",
"prettier": "3.3.2",
"read-pkg-up": "^7.0.1",
"semver": "^7.6.2",
"typescript": "^5.4.5"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/coffeescript": "^2.5.7",
"@types/eslint": "^8.56.10",
"@types/eslint-config-prettier": "^6.11.3",
"@types/execa": "^2.0.0",
"@types/node": "^20.14.2",
"@types/read-pkg-up": "^6.0.0",
"@types/semver": "^7.5.8",
"@types/shelljs": "^0.8.15",
"eslint-config-atomic": "link:",
"execa": "^5.1.1",
"gitly": "^2.5.3",
"npm-check-updates": "16.14.20",
"prettier-config-atomic": "^4.0.0",
"shelljs": "^0.8.5",
"shx": "^0.3.4"
},
"peerDependencies": {
"eslint": "^8 || ^7 || ^6"
},
"optionalDependencies": {
"coffeescript": "^1.12.7",
"eslint-plugin-coffee": "^0.1.15",
"eslint-plugin-react-hooks": "^4.6.2"
},
"keywords": [
"eslint",
"config",
"atomic",
"plugin",
"lint",
"prettier"
],
"react": "react.js",
"strict": "strict.js",
"strict-react": "strict-react.js"
}