-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.25 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.25 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
{
"name": "playwright-docker-server",
"version": "2.0.0",
"description": "Minimalistic playwright server in docker.",
"main": "build/src/main.js",
"repository": "https://github.com/Cyrus-d/playwright-docker-server",
"devDependencies": {
"@types/http-proxy": "^1.17.5",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"jest": "~26.6.3",
"jest-mock-console": "1.0.1",
"prettier": "~2.2.1",
"rimraf": "^3.0.0",
"ts-jest": "^26.5.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"tsutils": "^3.21.0",
"typescript": "^4.5.2"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "npm run clean && tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --coverage",
"test:no-cache": "jest --coverage --no-cache",
"test:watch": "jest --watch",
"start": "node build/src/main.js",
"start-debug": "node --inspect=0.0.0.0 build/src/main.js"
},
"author": "mo doaie<mdoaie@yahoo.co.uk>",
"license": "Apache-2.0",
"dependencies": {
"http-proxy": "^1.18.1",
"playwright": "^1.17.2",
"tslib": "^2.3.1"
}
}