This repository was archived by the owner on Jul 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.37 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.37 KB
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
{
"name": "vue-wow",
"version": "2.0.0",
"private": true,
"description": "VUE浏览器可视窗口加载",
"author": {
"name": "liubingwen",
"email": "530908773@qq.com"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib src/components/index.js",
"lint": "vue-cli-service lint",
"build:demo": "vue-cli-service build --dest docs"
},
"main": "dist/vue-wow.common.js",
"unpkg": "dist/vue-wow.umd.min.js",
"dependencies": {
"core-js": "^3.6.5",
"vue": "^2.6.10"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.6",
"@vue/cli-plugin-eslint": "~4.5.6",
"@vue/cli-service": "~4.5.6",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"lint-staged": "^8.1.5",
"prettier": "^1.19.1",
"vue-template-compiler": "^2.6.10"
},
"bugs": {
"url": "https://github.com/Estelle00/vue-wow/issues"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"keywords": [
"vue-wow",
"wow"
],
"license": "MIT",
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Estelle00/vue-wow"
}
}