-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.71 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.71 KB
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
57
58
59
60
{
"name": "setup-env",
"version": "1.0.0",
"description": "Set up the TestingBot Test Environment",
"homepage": "https://github.com/testingbot/testingbot-tunnel-action#readme",
"bugs": {
"url": "https://github.com/testingbot/testingbot-tunnel-action/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/testingbot/testingbot-tunnel-action.git"
},
"scripts": {
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"build": "ncc build src/index.ts -o dist/main && ncc build src/post.ts -o dist/post",
"test": "mocha",
"test:e2e": "run-p e2e:*",
"e2e:run": "node ./test/e2e.test.js",
"e2e:setup": "http-server ./test -p 8080 > /dev/null 2>&1 &",
"all": "npm run build && npm run format && npm run lint && npm run test"
},
"author": "Jochen Delabie <jochen@testingbot.com>",
"license": "MIT",
"keywords": [
"testingbot",
"tunnel",
"proxy",
"testingbot-tunnel"
],
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^15.0.1",
"@types/sinon": "^21.0.0",
"@typescript-eslint/parser": "^4.22.0",
"@vercel/ncc": "^0.38.4",
"eslint": "^7.25.0",
"eslint-plugin-github": "^4.1.3",
"http-server": "^14.1.1",
"mocha": "^11.7.5",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"sinon": "^21.0.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.2",
"webdriverio": "^7.5.2"
},
"overrides": {
"diff": ">=8.0.3",
"serialize-javascript": ">=7.0.3",
"undici": ">=7.0.0"
},
"dependencies": {
"@actions/artifact": "^2.2.2",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1"
}
}