-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 821 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 821 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
{
"name": "run-notebook-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": "yaananth",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.0.0",
"@actions/exec": "^1.0.0",
"@actions/github": "^1.0.0",
"@actions/io": "^1.0.0",
"@actions/tool-cache": "^1.0.0",
"semver": "^7.1.3"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.20.55",
"jest": "^29.0.2",
"jest-circus": "^24.7.1",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2"
}
}