generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.69 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
50
51
52
53
54
55
56
{
"name": "foresight-workflow-kit-action",
"version": "1.3.3",
"private": true,
"description": "Foresight Workflow Telemetry and Analyzer Action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package:main": "ncc build --source-map src/main.ts --out dist/main",
"package:post": "ncc build --source-map src/post.ts --out dist/post",
"package:scw": "ncc build --source-map src/statCollectorWorker.ts --out dist/scw",
"package": "npm run package:main && npm run package:post && npm run package:scw",
"test": "jest",
"all": "npm run build && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/runforesight/foresight-workflow-kit-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Serkan Özal <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^5.1.1",
"@octokit/action": "^4.0.9",
"axios": "^1.1.2",
"is-running": "^2.1.0",
"portfinder": "^1.0.28",
"sprintf-js": "^1.1.2",
"systeminformation": "^5.11.15"
},
"devDependencies": {
"@types/is-running": "^2.1.0",
"@types/jest": "^29.1.2",
"@types/node": "^18.8.2",
"@types/sprintf-js": "^1.1.2",
"@typescript-eslint/parser": "^5.39.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.25.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^27.1.1",
"js-yaml": "^4.1.0",
"prettier": "2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.2"
}
}