-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "vue-rokka-image-lazy",
"version": "0.4.2",
"description": "Vue 2.x component for lazy loading images from rokka.io",
"repository": "https://github.com:rokka-io/vue-rokka-image-lazy",
"author": "rokka.io",
"license": "MIT",
"scripts": {
"build": "rm -rf ./dist && rollup -c",
"watch": "rollup -c -w",
"lint": "eslint 'src/*' 'tests/*' --ignore-pattern='tests/__snapshots__'",
"fix": "eslint 'src/*' 'tests/*' --ignore-pattern='tests/__snapshots__' --fix",
"test": "jest",
"test:watch": "jest --watch",
"coveralls": "npm run test -- --coverage --coverageReporters=text-lcov | coveralls"
},
"files": [
"/dist/*",
"/src/*"
],
"engines": {
"node": ">8"
},
"module": "dist/index.esm.js",
"esnext": "src/index.js",
"main": "dist/index.umd.min.js",
"unpkg": "dist/index.umd.min.js",
"jsdelivr": "dist/index.umd.min.js",
"dependencies": {
"lozad": "^1.14.0",
"vue-rokka-image": "^0.5.1"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"coveralls": "^3.0.7",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^5.2.3",
"jest": "^24.9.0",
"jest-serializer-vue": "^2.0.2",
"rollup": "^1.27.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-vue": "^5.1.2",
"vue": "^2.6.10",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.10"
}
}