-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
66 lines (66 loc) · 1.9 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
{
"name": "editorconfig-checker",
"version": "0.0.0-development",
"description": "A tool to verify that your files are in harmony with your .editorconfig",
"keywords": [
"lint",
"linting",
"clean-code"
],
"repository": "https://github.com/editorconfig-checker/editorconfig-checker.javascript",
"license": "MIT",
"author": "Max Strübing <mxstrbng@gmail.com> (https://github.com/mstruebing) (https://twitter.com/mxstrbng)",
"funding": {
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/mstruebing"
},
"bin": {
"ec": "./dist/index.js",
"editorconfig-checker": "./dist/index.js"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"dist"
],
"type": "module",
"engines": {
"node": ">=20.11.0"
},
"scripts": {
"lint:typescript": "tsc --noEmit",
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
"lint:prettier": "prettier --check .",
"lint:commit": "commitlint",
"prepublishOnly": "npm run build",
"build": "rimraf dist && ncc build src/index.ts --minify",
"test": "node --import=tsx --test \"src/**/*.spec.ts\"",
"start": "node ./dist/index.js",
"release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@octokit/rest": "21.0.2",
"@types/adm-zip": "0.5.7",
"@types/node": "22.6.1",
"@types/proxy-from-env": "1.0.4",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"@vercel/ncc": "0.38.2",
"adm-zip": "0.5.16",
"eslint": "8.57.1",
"prettier": "3.3.3",
"proxy": "2.2.0",
"proxy-from-env": "1.1.0",
"rimraf": "6.0.1",
"semantic-release": "23.1.1",
"tar": "7.4.3",
"tmp-promise": "3.0.3",
"typescript": "5.5.4",
"tsx": "4.19.1",
"undici": "6.19.8"
}
}