-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 1.08 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": "@nightwatch/vue",
"version": "3.1.2",
"description": "Nightwatch plugin which adds support for Vue component testing using the Vite dev server. Requires Nightwatch 2.0+",
"repository": {
"type": "git",
"url": "[email protected]:nightwatchjs/nightwatch-plugin-vue.git"
},
"main": "index.js",
"scripts": {
"eslint": "eslint index.js nightwatch.conf.js nightwatch lib",
"test": "nightwatch --headless"
},
"publishConfig": {
"access": "public"
},
"author": "Andrei Rusu",
"files": [
"lib",
"nightwatch",
"index.js",
"index.d.ts",
"vite.config.js",
"LICENSE",
"README.md"
],
"license": "MIT",
"homepage": "https://nightwatchjs.org",
"types": "index.d.ts",
"devDependencies": {
"eslint": "^8.38.0",
"nightwatch": "^3.3.8",
"vue": "^3.2.47"
},
"dependencies": {
"@nightwatch/esbuild-utils": "^0.2.1",
"@vitejs/plugin-vue": "^4.1.0",
"get-port": "^5.1.1",
"vite": "^4.3.1",
"vite-plugin-nightwatch": "^0.4.6"
},
"optionalDependencies": {
"@esbuild/android-arm": "^0.17.19"
}
}