-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 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
{
"name": "lrc-gh-action",
"version": "1.0.11",
"description": "GitHub Action for LoadRunner Cloud",
"main": "bundle/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "ncc build ./src/index.ts --license licenses.txt -o bundle",
"buildNpx": "npm i @vercel/ncc && npx ncc build ./src/index.ts --license licenses.txt -o bundle",
"eslint": "npx eslint ./src/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/MicroFocus/lrc-gh-action"
},
"private": "true",
"contributors": [
{
"name": "Xiao-yuan Qi",
"email": "xiao-yuan.qi@microfocus.com"
},
{
"name": "Wei Sun",
"email": "wei.sun10@microfocus.com"
}
],
"keywords": [],
"author": "Micro Focus or one of its affiliates",
"license": "MIT",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"fs-extra": "11.1.0",
"got": "12.6.0",
"lrcrunner": "github:MicroFocus/lrcrunner#v2.0.4",
"tslib": "2.5.0"
},
"devDependencies": {
"@types/fs-extra": "11.0.1",
"@types/node": "18.15.3",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"@vercel/ncc": "0.36.1",
"eslint": "8.36.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.5",
"prettier": "2.8.4",
"ts-node": "10.9.1",
"typescript": "4.9.5"
}
}