forked from advanced-chat/vue-advanced-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.35 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "vue-advanced-chat",
"version": "0.8.4",
"license": "MIT",
"description": "A beautiful chat rooms component made with Vue.js - compatible with Vue, React & Angular",
"author": {
"email": "[email protected]",
"name": "Antoine Dupont"
},
"types": "./types/vue-advanced-chat.common.d.ts",
"keywords": [
"vue",
"vuejs",
"chat",
"vue-js-chat",
"multiple",
"group",
"rooms",
"realtime"
],
"repository": {
"type": "git",
"url": "git+https://github.com/antoine92190/vue-advanced-chat.git"
},
"bugs": {
"url": "https://github.com/antoine92190/vue-advanced-chat/issues"
},
"homepage": "https://github.com/antoine92190/vue-advanced-chat#readme",
"main": "./dist/vue-advanced-chat.common.js",
"unpkg": "./dist/vue-advanced-chat.min.js",
"scripts": {
"serve": "vue-cli-service serve",
"build": "npm run clean:lib && npm run build:lib && npm run build:wc",
"clean:lib": "rimraf dist",
"build:lib": "vue-cli-service build --target lib --no-clean --name vue-advanced-chat ./src/ChatWindow/index.js",
"build:wc": "vue-cli-service build --target wc --no-clean --name vue-advanced-chat ./src/ChatWindow/ChatWindow.vue",
"prepublish": "npm run lint && npm run build",
"publish-beta": "npm publish --tag beta",
"lint": "vue-cli-service lint",
"test": "jest"
},
"typings": "types/index.d.ts",
"files": [
"dist/*",
"types/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^1.1.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^23.6.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.5.0",
"jest": "^23.6.0",
"node-sass": "^4.13.0",
"rimraf": "^2.7.1",
"sass-loader": "^10.1.1",
"typescript": "^4.0.5",
"vue": "^2.6.10",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"lamejs": "^1.2.0",
"linkifyjs": "^2.1.9",
"v-click-outside": "^3.1.2",
"vue-emoji-picker": "^1.0.1",
"vue-infinite-loading": "https://github.com/antoine92190/vue-infinite-loading/tarball/master"
},
"optionalDependencies": {
"lamejs": "^1.2.0"
}
}