-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "vue-observer-directive",
"description": "使用 IntersectionObserver 进行是否展示 DOM 判断(Vue@2自定义指令)",
"repository": {
"type": "git",
"url": "[email protected]:realgeoffrey/vue-observer-directive.git"
},
"keywords": [
"vue",
"vue-directive",
"IntersectionObserver"
],
"author": "realgeoffrey",
"license": "MIT",
"homepage": "https://github.com/realgeoffrey/vue-observer-directive#readme",
"bugs": {
"url": "https://github.com/realgeoffrey/vue-observer-directive/issues"
},
"main": "dist/vue-observer-directive.cjs.js",
"module": "dist/vue-observer-directive.esm.js",
"unpkg": "dist/vue-observer-directive.iife.js",
"jsdelivr": "dist/vue-observer-directive.iife.js",
"scripts": {
"build": "rollup --config ./build/rollup.config.js "
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babelrc-rollup": "^3.0.0",
"rollup": "^1.26.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^5.1.2"
},
"version": "1.2.5"
}