-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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": "playright",
"description": "test- and user-oriented wrapper for Playwright",
"homepage": "https://github.com/automician/playright",
"version": "0.0.9",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"dependencies": {
"playwright": "1.7.1",
"typescript": "3.9.7"
},
"devDependencies": {
"@types/jest": "^26.0.9",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"del-cli": "^3.0.1",
"eslint": "^7.6.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-plugin-import": "^2.22.0",
"http-server": "^0.12.3",
"jest": "^26.4.0",
"ts-jest": "^26.2.0",
"typedoc": "0.17.0",
"typedoc-plugin-markdown": "2.2.17"
},
"scripts": {
"clean": "del ./dist",
"compile": "tsc",
"startserver": "http-server ./resources -p 4445",
"lint": "eslint --ext .ts .",
"test": "jest",
"build": "npm run lint && npm run test && npm run generateDocs",
"prepublish": "npm run compile",
"generateDocs": "typedoc --theme markdown --mode file --readme none --tsconfig lib/tsconfig.json --out tsdocs --gitRevision master lib"
},
"keywords": [
"test",
"testing",
"playwright"
],
"author": {
"name": "Iakiv Kramarenko",
"email": "[email protected]"
},
"license": "MIT"
}