forked from microsoft/playwright-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 960 Bytes
/
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
{
"name": "@playwright/test",
"version": "0.1102.0",
"license": "Apache-2.0",
"author": {
"name": "Microsoft Corporation"
},
"engines": {
"node": ">=10.17.0"
},
"scripts": {
"lint": "eslint . --ext js,ts",
"build": "tsc --build tsconfig.json",
"watch": "tsc --build tsconfig.json --watch",
"prepare": "npm run build",
"prepublishOnly": "rm tsconfig.tsbuildinfo && rm -rf out && npm run build",
"test": "folio test/"
},
"repository": "github:Microsoft/playwright-test",
"description": "A test runner for running tests with Playwright.",
"main": "out/index.js",
"dependencies": {
"folio": "=0.3.18",
"playwright": "=1.10.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.8.1",
"eslint-plugin-notice": "^0.9.10",
"typescript": "^4.0.2"
}
}