-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "tuiv",
"version": "0.10.0",
"description": "e2e browser testing based on playwright",
"main": "src/index.js",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"docs:deploy": "npm run docs:build -s && gh-pages -d docs/.vitepress/dist",
"test": "src/cli.js run tests/**/*.test.js "
},
"bin": {
"tuiv": "./src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rashfael/tuiv.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/rashfael/tuiv/issues"
},
"homepage": "https://github.com/rashfael/tuiv#readme",
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"gh-pages": "^3.1.0",
"serve-handler": "^6.1.3",
"vitepress": "^0.12.2"
},
"dependencies": {
"@babel/code-frame": "^7.12.11",
"@babel/parser": "^7.13.16",
"commander": "^7.2.0",
"cosmiconfig": "^7.0.0",
"globby": "^6.1.0",
"joi": "^17.4.0",
"lodash": "^4.17.21",
"playwright": "^1.25.1",
"stack-utils": "^2.0.3"
}
}