-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.87 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
{
"name": "vue-lazy-container",
"version": "1.2.0",
"description": "listening to the visibility of elements in the page",
"keywords": [
"vue",
"lazy",
"container",
"optimization"
],
"files": [
"dist",
"src"
],
"main": "dist/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:main": "webpack --config build/webpack.main.config.js",
"build:umd": "webpack --config build/webpack.umd.config.js",
"build:all": "npm run build:main && npm run build:umd",
"prepare": "npm run build:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Happy-Coding-Clans/vue-lazy-container.git"
},
"author": "https://github.com/huangshuwei",
"license": "MIT",
"bugs": {
"url": "https://github.com/Happy-Coding-Clans/vue-lazy-container/issues"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
},
"homepage": "https://github.com/huangshuwei/vue-lazy-container#readme",
"peerDependencies": {
"intersection-observer": ">= 0.12.0",
"vue": ">= 1.0.28"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/plugin-external-helpers": "^7.12.13",
"@babel/plugin-transform-modules-umd": "^7.13.0",
"@babel/preset-env": "^7.13.15",
"babel-loader": "^8.2.2",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.7.0",
"eslint": "^7.24.0",
"progress-bar-webpack-plugin": "^2.1.0",
"vue-loader": "^15.9.6",
"webpack": "4.46",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.2"
},
"dependencies": {
"core-js": "^3.17.2",
"intersection-observer": "^0.12.0"
}
}