-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.05 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.05 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
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": "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 --pretty",
"bump": "ncu -u -x coffeescript,execa,read-pkg-up,make-synchronous && pnpm update && pnpm dedupe",
"clean": "shx rm -rf ./spec/fixtures/ ./dist",
"dev": "tsc --pretty --watch",
"format": "prettier --write .",
"lint": "eslint ./ --ignore dist --fix",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run clean && pnpm run build",
"test": "tsx --tsconfig ./spec/tsconfig.json ./spec/test.mts",
"test.format": "prettier . --check",
"test.lint": "cross-env NODE_OPTIONS=--enable-source-maps eslint . --ignore-pattern spec/fixtures/**"
},
"prettier": "prettier-config-atomic",
"dependencies": {
"@babel/core": "^7.26.10",
"@babel/eslint-parser": "^7.27.0",
"@babel/plugin-syntax-flow": "^7.26.0",
"@babel/plugin-syntax-jsx": "^7.25.9",
"@typescript-eslint/parser": "^8.28.0",
"anymatch": "^3.1.3",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-only-warn": "npm:@aminya/eslint-plugin-only-warn@^1.2.2",
"eslint-plugin-optimize-regex": "github:aminya/eslint-plugin-optimize-regex#16f9506ed2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-solid": "^0.14.5",
"eslint-plugin-yaml": "^1.1.2",
"globals": "^16.0.0",
"globify-gitignore": "^1.0.3",
"make-synchronous": "^0.1.1",
"prettier": "3.5.3",
"read-pkg-up": "^7.0.1",
"semver": "^7.7.1",
"tslib": "^2.8.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/coffeescript": "^2.5.7",
"@types/eslint": "^9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/execa": "^2.0.0",
"@types/fs-extra": "~11.0.4",
"@types/node": "^22.13.13",
"@types/read-pkg-up": "^6.0.0",
"@types/semver": "^7.7.0",
"@types/shelljs": "^0.8.15",
"eslint-config-atomic": "link:",
"execa": "^5.1.1",
"fs-extra": "^11.3.0",
"gitly": "^3.1.0",
"npm-check-updates": "17.1.16",
"prettier-config-atomic": "^4.0.0",
"shelljs": "^0.9.2",
"shx": "^0.4.0",
"tsx": "^4.19.3"
},
"peerDependencies": {
"eslint": "^8 || ^7 || ^6"
},
"optionalDependencies": {
"coffeescript": "^1.12.7",
"eslint-plugin-coffee": "^0.1.15",
"eslint-plugin-react-hooks": "^5.2.0"
},
"keywords": [
"eslint",
"config",
"atomic",
"plugin",
"lint",
"prettier"
],
"react": "react.js",
"strict": "strict.js",
"strict-react": "strict-react.js"
}