-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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
{
"name": "setup-env",
"version": "1.0.0",
"description": "Set up the TestingBot Test Environment",
"main": "index.js",
"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": "run-p test:*",
"test:run": "node ./test/test.js",
"test:setup": "http-server ./test -p 8080 > /dev/null 2>&1 &",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test",
"all": "npm run build && npm run format && npm run lint && npm run coverage"
},
"author": "Jochen Delabie <[email protected]>",
"license": "MIT",
"keywords": [
"testingbot",
"tunnel",
"proxy",
"testingbot-tunnel"
],
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.1",
"@typescript-eslint/parser": "^4.22.0",
"@vercel/ncc": "^0.28.3",
"eslint": "^7.25.0",
"eslint-plugin-github": "^4.1.3",
"http-server": "^0.12.3",
"mocha": "^8.3.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"webdriverio": "^7.5.2"
},
"dependencies": {
"@actions/artifact": "^0.5.1",
"@actions/core": "^1.2.7",
"@actions/exec": "^1.0.4"
}
}