-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.9 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
{
"name": "vue-better-lazyload",
"description": "A Vue.js plugin for lazyload your Image , Component or anything in your application",
"version": "1.0.3",
"author": "wangxiang <[email protected]>",
"license": "MIT",
"main": "dist/vue-better-lazyload.js",
"unpkg": "dist/vue-better-lazyload.js",
"scripts": {
"build:umd": "node build.js",
"build:examples": "cp -rv ./dist/ ./examples/src/",
"upgrade:examples": "cd ./examples && yarn upgrade vue-better-lazyload",
"build": "yarn build:umd && yarn build:examples",
"prepublish": "yarn build:umd",
"postpublish": "yarn upgrade:examples"
},
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/wolfstark/vue-better-lazyload.git"
},
"keywords": [
"vue-lazyload",
"vue",
"lazyload",
"vue-component"
],
"bugs": {
"url": "https://github.com/wolfstark/vue-better-lazyload/issues"
},
"devDependencies": {
"@types/lodash.throttle": "^4.1.3",
"babel-core": "^6.26.0",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-3": "^6.24.1",
"chalk": "^2.3.0",
"css-loader": "^0.28.7",
"file-loader": "^1.1.4",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"ora": "^1.3.0",
"style-loader": "^0.19.1",
"ts-loader": "^3.2.0",
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.1.5",
"vue": "^2.5.13",
"webpack": "^3.6.0"
},
"typings": "typings/index.d.ts",
"peerDependencies": {
"vue": "^2.5.13"
},
"dependencies": {
"lodash.throttle": "^4.1.1",
"vue-class-component": "^6.1.2"
}
}