generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.88 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
{
"name": "typescript-action",
"version": "0.0.0-semantic-released",
"private": true,
"description": "TypeScript template action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "yarn run build && yarn run format && yarn run lint && yarn run package && yarn test",
"prepare": "husky install",
"release": "yarn semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^5.0.0",
"@actions/glob": "^0.4.0",
"@octokit/types": "^6.19.1",
"@octokit/webhooks": "^9.13.0",
"@redocly/cli": "1.0.2",
"comment-json": "^4.2.3",
"csv-reader": "^1.0.8",
"ignore": "^5.2.4"
},
"devDependencies": {
"@typeform/eslint-config": "^6.0.3",
"@types/jest": "^26.0.24",
"@types/node": "^15.14.1",
"@vercel/ncc": "^0.36.1",
"eslint": "^7.31.0",
"husky": ">=7",
"jest": "^27.0.6",
"jest-circus": "^27.0.6",
"js-yaml": "^4.1.0",
"lint-staged": ">=11",
"prettier": "2.3.2",
"semantic-release": "^17.4.4",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"prettier": "@typeform/eslint-config/prettier",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.ts": "prettier --write"
},
"engines": {
"node": "20"
}
}