-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 884 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 884 Bytes
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
{
"name": "node12-template-action",
"version": "0.0.0",
"private": true,
"description": "Node 12 template action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/node12-template.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.0.0",
"@actions/exec": "^1.0.0",
"@actions/github": "^9.1.1",
"@actions/io": "^1.0.0",
"@actions/tool-cache": "^1.0.0",
"@slack/webhook": "^7.0.9",
"semver": "^6.1.1"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^16.11.7",
"@types/semver": "^6.0.0",
"jest": "^30.3.0",
"jest-circus": "^30.3.0",
"ts-jest": "^29.4.9",
"typescript": "^4.9.5"
}
}