-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.7 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
{
"name": "lint-pilot",
"description": "Lint Pilot: Your co-pilot for maintaining high code quality with seamless ESLint, Stylelint, and MarkdownLint integration.",
"repository": {
"type": "git",
"url": "git+https://github.com/01taylop/lint-pilot.git"
},
"version": "0.0.1-beta.1",
"type": "module",
"engines": {
"node": ">=18.18.0"
},
"bin": {
"lint-pilot": "index.min.js"
},
"scripts": {
"build": "rimraf lib && mkdir lib && rollup -c",
"lint": "tsx src/index.js --ignore-dirs lib",
"publishLib": "yarn test --coverage && yarn build && cd lib && npm publish",
"test": "jest"
},
"dependencies": {
"@stylistic/stylelint-plugin": "3.0.1",
"chalk": "5.3.0",
"chokidar": "3.6.0",
"commander": "12.1.0",
"eslint": "9.10.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-inclusive-language": "2.2.1",
"eslint-plugin-jest": "28.8.3",
"eslint-plugin-n": "17.10.2",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-sort-destructure-keys": "2.0.0",
"eslint-plugin-sort-exports": "0.9.1",
"glob": "10.4.5",
"log-symbols": "7.0.0",
"markdownlint": "0.35.0",
"markdownlint-rule-helpers": "0.26.0",
"node-notifier": "10.0.1",
"postcss-less": "6.0.0",
"postcss-scss": "4.0.9",
"space-log": "1.2.0",
"stylelint": "16.9.0",
"stylelint-config-property-sort-order-smacss": "10.0.0",
"stylelint-declaration-strict-value": "1.10.6",
"stylelint-order": "6.0.4",
"stylelint-scss": "6.5.1"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.4",
"@babel/preset-typescript": "7.24.7",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-typescript": "11.1.6",
"@types/eslint": "9.6.1",
"@types/jest": "29.5.12",
"@types/markdownlint-rule-helpers": "0.21.5",
"@types/node-notifier": "8.0.5",
"babel-plugin-transform-import-meta": "2.2.1",
"jest": "29.7.0",
"rimraf": "5.0.10",
"rollup": "4.21.2",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-terser": "7.0.2",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tslib": "2.7.0",
"tsx": "4.19.0",
"typescript": "5.5.4"
},
"author": "Patrick Taylor <[email protected]>",
"keywords": [
"@stylistic/stylelint-plugin",
"eslint",
"eslint-plugin-eslint-comments",
"eslint-plugin-inclusive-language",
"eslint-plugin-jest",
"eslint-plugin-n",
"eslint-plugin-promise",
"eslint-plugin-sort-destructure-keys",
"eslint-plugin-sort-exports",
"lint",
"markdownlint",
"stylelint",
"stylelint-config-property-sort-order-smacss",
"stylelint-declaration-strict-value",
"stylelint-order",
"stylelint-scss"
]
}