forked from theomessin/vue-chat-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "vue-chat-scroll",
"description": "Vue directive to keep things scrolled to the bottom",
"keywords": [
"vue",
"directive",
"chat",
"scroll",
"bottom"
],
"license": "MIT",
"author": "Theodore Messinezis",
"files": [
"dist/vue-chat-scroll.js"
],
"main": "dist/vue-chat-scroll.js",
"repository": {
"type": "git",
"url": "git+https://github.com/theomessin/vue-chat-scroll.git"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint --ext .ts ./",
"test": "jest"
},
"devDependencies": {
"@rollup/plugin-typescript": "^4.0.0",
"@semantic-release/exec": "^5.0.0",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@vue/test-utils": "^1.0.0-beta.33",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.19.0",
"jest": "^25.3.0",
"rollup": "^2.3.3",
"rollup-plugin-uglify": "^6.0.4",
"semantic-release": "^17.0.4",
"ts-jest": "^25.3.1",
"tslib": "^1.11.1",
"typescript": "^3.8.3",
"vue": "^2.0.0",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"vue": "^2.0.0"
}
}