-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.16 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/svelte",
"version": "3.0.0",
"description": "Nightwatch plugin which adds support for Svelte component testing using the Vite dev server. Requires Nightwatch 2.0+",
"repository": {
"type": "git",
"url": "[email protected]:nightwatchjs/nightwatch-plugin-svelte.git"
},
"main": "index.js",
"scripts": {
"eslint": "eslint index.js nightwatch.conf.js nightwatch lib",
"test": "nightwatch --headless"
},
"publishConfig": {
"access": "public"
},
"author": "Harshit Agrawal",
"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.0.1"
},
"dependencies": {
"@sveltejs/vite-plugin-svelte": "^2.4.3",
"@nightwatch/esbuild-utils": "^0.2.1",
"get-port": "^5.1.1",
"svelte": "^4.2.0",
"vite": "^4.3.1",
"vite-plugin-nightwatch": "[email protected]:harshit-bs/vite-plugin-nightwatch.git#feat/svelte-ct"
},
"optionalDependencies": {
"@esbuild/android-arm": "^0.17.19"
}
}