-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.08 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
{
"name": "exlint-action",
"version": "1.0.1",
"description": "Runs and uses `exlint` in your repository.",
"main": "./build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Exlint/actions.git"
},
"keywords": [
"exlint",
"lint"
],
"author": {
"name": "Exlint",
"email": "[email protected]",
"url": "https://www.exlint.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Exlint/actions/issues"
},
"homepage": "https://github.com/Exlint/actions",
"scripts": {
"preinstall": "npx only-allow pnpm",
"husky:install": "husky install",
"git:config": "git config --local include.path ../.gitconfig",
"setdev": "run-p husky:install git:config",
"onboarding": "node ./scripts/onboarding.cjs",
"prepare": "is-ci || run-s setdev onboarding",
"dist": "tsc -p ./tsconfig.build.json",
"bundle": "ncc build ./dist/index.js -o ./build --source-map --license licenses.txt",
"build": "run-s dist bundle",
"lint": "eslint -c ./.eslintrc.cjs \"**/*.{ts,js.cjs}\"",
"type-check": "tsc --project ./tsconfig.json",
"inflint": "inflint -c ./inflint.config.ts",
"depcheck": "depcheck --config ./.depcheckrc.json",
"prettier": "prettier --check **/*.{ts,js,cjs,json,yaml}"
},
"dependencies": {
"@actions/core": "1.10.0",
"@actions/exec": "1.1.1",
"axios": "1.4.0",
"chalk": "4.1.2",
"netrc-parser": "3.1.6"
},
"devDependencies": {
"@commitlint/cli": "17.6.3",
"@exlint.io/inflint": "1.2.10",
"@types/node": "18.16.16",
"@typescript-eslint/eslint-plugin": "5.59.7",
"@typescript-eslint/parser": "5.59.7",
"@vercel/ncc": "0.36.1",
"commitizen": "4.3.0",
"cz-vinyl": "1.6.2",
"depcheck": "1.4.3",
"eslint": "8.41.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-deprecation": "1.4.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unused-imports": "2.0.0",
"figlet": "1.6.0",
"husky": "8.0.3",
"is-ci": "3.0.1",
"lint-staged": "13.2.2",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"rimraf": "4.4.1",
"ts-loader": "9.4.3",
"ts-node": "10.9.1",
"typescript": "4.9.5"
}
}