-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "changelogs-generator-action",
"version": "v0.1.0",
"private": true,
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"package": "ncc build --source-map",
"bundle": "tsc && ncc build --source-map",
"test": "jest",
"prepare": "husky install",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/graphql": "^7.0.2",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.4.5",
"@typescript-eslint/parser": "^6.2.0",
"@vercel/ncc": "^0.36.1",
"husky": "^8.0.3",
"jest": "^29.6.2",
"js-yaml": "^4.1.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}