forked from hilongjw/vue-lazyload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "vue-lazyload",
"version": "1.1.4",
"description": "Vue module for lazy-loading images in your vue.js applications.",
"main": "vue-lazyload.js",
"unpkg": "vue-lazyload.js",
"scripts": {
"start": "node build",
"compile": "babel --presets es2015 -d lib/ src/",
"test": "npm run compile && mocha --compilers js:babel-core/register"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/hilongjw/vue-lazyload.git"
},
"keywords": [
"vue-lazyload",
"vue",
"lazyload",
"vue-directive"
],
"author": "Awe <hilongjw@gmail.com>",
"bugs": {
"url": "https://github.com/hilongjw/vue-lazyload/issues"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.25.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2015-rollup": "^1.2.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.0",
"mocha": "^3.4.2",
"rollup": "^0.35.10",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-uglify": "^1.0.1",
"vue": "^2.4.1"
}
}