-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
executable file
·65 lines (65 loc) · 1.61 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "nuxt-socket-io",
"version": "3.0.13",
"description": "Socket.io client and server module for Nuxt. Just plug it in and GO",
"author": "Richard Schloss",
"type": "module",
"main": "lib/module.js",
"types": "lib/types.d.ts",
"license": "MIT",
"contributors": [
{
"name": "Richard Schloss"
}
],
"keywords": [
"nuxt",
"socket.io",
"socket.io-client",
"vue",
"vuejs",
"easy"
],
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/richardeschloss/nuxt-socket-io",
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build && echo 'export { server }' >> .output/server/chunks/nitro/server.mjs",
"start": "nuxi preview",
"cleanup": "nuxi cleanup",
"standalone": "node --experimental-loader=./test/utils/loaders.js lib/standalone.js",
"generate:local": "nuxi generate",
"generate:gh-pages": "cross-env nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "ava --colors --watch --timeout=10m",
"test:cov": "c8 ava --timeout=10m"
},
"files": [
"lib",
"utils"
],
"imports": {
"#root/*": "./*",
"#app": "./test/utils/plugin.js"
},
"dependencies": {
"@nuxt/types": "^2.15.5",
"glob": "^7.1.7",
"socket.io": "4.1.1",
"socket.io-client": "4.1.1",
"tiny-emitter": "^2.1.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^6.0.1",
"ava": "^3.15.0",
"browser-env": "^3.3.0",
"c8": "^7.10.0",
"eslint": "^7.32.0",
"jsdom": "^16.7.0",
"jsdom-global": "^3.0.2",
"les-utils": "^2.0.4",
"nuxt": "^3.0.0"
}
}