-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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
{
"name": "vue-typing",
"version": "1.1.0",
"description": "A Component with keyboard typing effect",
"main": "src/index.js",
"repository": "https://github.com/trickstival/vue-typing",
"author": "trickstival",
"license": "MIT",
"types": "types/index.d.ts",
"scripts": {
"dev": "jest --watchAll",
"test:unit": "jest",
"lint": "eslint --color --ext=js,vue .",
"types": "tsc -p ./types/test/tsconfig.json"
},
"dependencies": {
"typescript": "^3.5.2",
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@types/jest": "^24.0.15",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"eslint": "^6.0.1",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-vue": "^5.2.3",
"jest": "^24.8.0",
"raf-stub": "^2.0.2",
"vue-template-compiler": "^2.6.10"
},
"keywords": [
"typing",
"effect",
"vue",
"component"
],
"engines": {
"node": ">=8.10"
},
"files": [
"src",
"types",
"LICENSE"
]
}