forked from hilongjw/vue-lazyload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 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
{
"name": "vue-lazyload",
"version": "1.2.6",
"description": "Vue module for lazy-loading images in your vue.js applications.",
"main": "vue-lazyload.js",
"unpkg": "vue-lazyload.js",
"scripts": {
"build": "node build",
"lint": "eslint ./src",
"test": "karma start",
"test:types": "tsc -p types/test",
"test:debug": "cross-env DEBUG=true karma start"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/hilongjw/vue-lazyload.git"
},
"typings": "types/index.d.ts",
"keywords": [
"vue-lazyload",
"vue",
"lazyload",
"vue-directive"
],
"author": "Awe <[email protected]>",
"bugs": {
"url": "https://github.com/hilongjw/vue-lazyload/issues"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"license": "MIT",
"devDependencies": {
"assign-deep": "^0.4.7",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^4.13.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-expect": "^1.1.3",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^5.0.2",
"mocha": "^4.0.1",
"puppeteer": "^0.13.0",
"rollup": "^0.51.1",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-node-resolve": "^3.2.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1",
"vue": "^2.5.16"
}
}