-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 934 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 934 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
{
"name": "tern-action",
"version": "1.0.0",
"description": "GitHub Action to VMWARE's tern",
"main": "index.js",
"author": "Jeroen Knoops",
"license": "MIT",
"scripts": {
"build": "ncc build index.ts -o dist",
"test": "jest --no-cahce",
"test:watch": "jest --watch --watchAll",
"blurk": "echo blurk"
},
"repository": {
"type": "git",
"url": "git+https://github.com/philips-labs/tern-action.git"
},
"bugs": {
"url": "https://github.com/philips-labs/tern-action/issues"
},
"homepage": "https://github.com/philips-labs/tern-action#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.0.4",
"@actions/github": "^2.2.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.5",
"@vercel/ncc": "^0.27.0",
"jest": "^26.0.1",
"jest-cli": "^26.0.1",
"ts-jest": "^26.0.0",
"typescript": "^3.8.3"
}
}