-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.94 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
{
"name": "vue-mentionable",
"author": "Tuna Yagci (https://www.linkedin.com/in/tuna-ya%C4%9Fc%C4%B1-848b6183)",
"version": "0.2.4",
"description": "A collection of Vue components where user can mention anything with any identifier.",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"bundle": "vue-cli-service build --target lib --name vue-mentionable src/index.js",
"lint": "vue-cli-service lint"
},
"homepage": "https://github.com/TunaYagci/vue-mentionable",
"license": "(MIT OR Apache-2.0)",
"repository": {
"type": "git",
"url": "https://github.com/TunaYagci/vue-mentionable.git"
},
"dependencies": {
"bootstrap": "^3.4.1",
"random-uuid": "^1.0.2",
"textarea-caret": "^3.1.0",
"vue-autosize": "^1.0.2"
},
"devDependencies": {
"debounce": "^1.2.0",
"core-js": "^3.3.2",
"vue": "^2.6.10",
"vue-router": "^3.1.3",
"@vue/cli-plugin-babel": "^4.0.0",
"@vue/cli-plugin-eslint": "^4.0.0",
"@vue/cli-plugin-router": "^4.0.0",
"@vue/cli-service": "^4.0.0",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"vue-template-compiler": "^2.6.10",
"propdoc": "^0.9.3",
"sass-loader": "^7.3.1",
"node-sass": "^4.13.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"main": "./dist/vue-mentionable.common.js",
"files": [
"dist/*.js",
"src/MentionableTextarea.vue"
],
"keywords": [
"vue mentionable",
"vue mention",
"mention textarea",
"mentionable textarea",
"vue auto complete",
"vue autocomplete textarea",
"vue autocomplete mention",
"vue autocomplete hashtag",
"hashtag textarea"
]
}