generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.32 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
{
"name": "commit-changes",
"private": true,
"engines": {
"node": "16"
},
"scripts": {
"format": "prettier --write --cache **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"build": "ncc build --minify --source-map src/main.ts",
"test": "jest --coverage",
"prestart": "npm run build",
"start": "node --enable-source-maps dist/index.js",
"all": "npm run format && npm run lint && npm test && npm run build",
"postinstall": "husky install"
},
"dependencies": {
"@actions/core": "^1.9.0",
"@actions/github": "^5.0.3",
"@octokit/types": "^6.40.0",
"globby": "^13.1.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.14.185",
"@types/node": "^16.11.62",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-github": "^4.3.7",
"eslint-plugin-jest": "^26.8.7",
"husky": "^8.0.1",
"jest": "^27.5.1",
"jest-circus": "^27.5.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^27.1.5",
"typescript": "^4.8.4"
}
}