This repository has been archived by the owner on Jul 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
76 lines (76 loc) · 2.26 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
71
72
73
74
75
76
{
"name": "@voorhoede/vue-lazy-load",
"version": "1.2.9",
"description": "",
"main": "dist/vue-lazy-load.ssr.js",
"module": "dist/vue-lazy-load.esm.js",
"unpkg": "dist/vue-lazy-load.min.js",
"style": "dist/vue-lazy-load.css",
"licence": "MIT",
"author": "De Voorhoede (https://voorhoede.nl/)",
"repository": {
"type": "git",
"url": "https://github.com/voorhoede/vue-lazy-load"
},
"files": [
"dist/*",
"src/**/*.vue"
],
"scripts": {
"prebuild": "rm -rf dist/",
"build": "NODE_ENV=production rollup --c rollup.config.js",
"docs": "run-s docs:*",
"docs:api": "vuedoc.md src/vue-lazy-load.vue --section 'API' --output docs/v1/readme.md --ignore-data --ignore-methods --ignore-computed",
"docs:vuepress": "vuepress build docs",
"predev": "npm run docs:api",
"dev": "vuepress dev docs --open",
"test": "jest src/*",
"watch:test": "npm test -- --watch",
"lint": "eslint 'src/**/*.{js,vue}'"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@shopify/jest-dom-mocks": "^2.8.11",
"@vue/test-utils": "^1.0.0-beta.33",
"@vuedoc/md": "^1.6.0",
"@vuepress/plugin-register-components": "^1.4.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.3.0",
"babel-preset-env": "^1.7.0",
"babel-preset-vue": "^2.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-vue": "^6.2.2",
"jest": "^25.3.0",
"minimist": "^1.2.5",
"node-fetch": "^2.6.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.6.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-css-only": "^2.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-vue": "^5.1.6",
"vue": "^2.6.11",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.4.1",
"vuepress-plugin-demo-code": "^0.5.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
}
},
"dependencies": {}
}