-
Notifications
You must be signed in to change notification settings - Fork 443
/
package.json
66 lines (66 loc) · 1.79 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
{
"name": "vue-beautiful-chat",
"version": "2.5.0",
"description": "A simple and beautiful Vue chat component backend agnostic.",
"main": "./dist/vue-beautiful-chat.umd.min.js",
"repository": "https://github.com/mattmezza/vue-beautiful-chat.git",
"author": "Matteo Merola <mattmezza@gmail.com>",
"license": "MIT",
"scripts": {
"build": "vue-cli-service build --target lib --name vue-beautiful-chat --formats umd-min src/index.js",
"lint": "vue-cli-service lint",
"watch": "npm run build -- --mode development --watch",
"prepublishOnly": "npm run build"
},
"files": [
"dist/*"
],
"dependencies": {
"autolinker": "^1.8.3",
"emoji-js": "^3.4.0",
"escape-goat": "^1.3.0",
"imagemin": "^6.1.0",
"kind-of": "6.0.3",
"minimist": "1.2.3",
"msgdown": "^1.0.2",
"v-tooltip": "^2.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.2.3",
"@vue/cli-plugin-eslint": "~4.2.3",
"@vue/cli-service": "~4.2.3",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"node-forge": "^0.10.0",
"node-sass": "^4.13.1",
"prettier": "^2.0.2",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.6.11"
},
"keywords": [
"vue",
"vuejs",
"chat",
"vue-js-chat"
],
"bugs": {
"url": "https://github.com/mattmezza/vue-beautiful-chat/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": "vue-cli-service lint"
}
}