generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "typescript-action",
"version": "0.0.0",
"private": true,
"description": "TypeScript template action",
"main": "lib/main.js",
"scripts": {
"build": "set NODE_OPTIONS=--openssl-legacy-provider tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"pack": "set NODE_OPTIONS=--openssl-legacy-provider ncc build",
"all": "npm run build && npm run format && npm run pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "jdcargile",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@octokit/graphql": "^5.0.4",
"@octokit/rest": "^19.0.5",
"axios": "^1.2.1",
"moment-timezone": "^0.5.39-2022f",
"octokit": "^3.1.2"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/moment-timezone": "^0.5.30",
"@types/node": "^16.11.7",
"@typescript-eslint/parser": "^5.47.0",
"@zeit/ncc": "^0.20.5",
"eslint": "^8.30.0",
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-jest": "^27.1.7",
"jest": "^29.7.0",
"jest-circus": "^29.3.1",
"js-yaml": "^3.14.1",
"prettier": "^2.8.1",
"ts-jest": "^29.1.2",
"typescript": "^4.9.4"
}
}