-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "@tdd-buffet/selenium",
"publishConfig": {
"access": "public"
},
"version": "0.4.28",
"description": "Selenium tools for tdd-buffet",
"keywords": [
"selenium",
"tests",
"docker",
"vnc"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NiGhTTraX/tdd-buffet.git",
"directory": "packages/selenium"
},
"author": "Andrei Picus",
"license": "MIT",
"homepage": "https://github.com/NiGhTTraX/tdd-buffet/tree/master/packages/selenium",
"bin": "./dist/bin/index.js",
"files": [
"dist"
],
"scripts": {
"build": "pnpm run clean && pnpm run compile",
"clean": "rm -rf ./dist",
"package": "cp -r src/config ./dist",
"compile": "tsc -p tsconfig.build.json",
"prepublishOnly": "pnpm run build && pnpm run package"
},
"dependencies": {
"@types/got": "~9.6.2",
"@types/node": "~20.12.0",
"@types/progress": "~2.0.3",
"execa": "~8.0.0",
"got": "~14.2.0",
"meow": "~9.0.0",
"progress": "~2.0.3"
},
"devDependencies": {
"typescript": "~5.4.0"
}
}