-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.07 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.07 KB
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
{
"name": "vue-intersection-plugin-revision",
"version": "1.2.3",
"description": "a plugin for vue exposure, used by intersection observer API",
"main": "dist/index.esm.js",
"keywords": [
"vue",
"plugin",
"directive",
"intersection",
"log"
],
"scripts": {
"doc:dev": "vuepress dev docs",
"doc:build": "vuepress build docs",
"doc:deploy": "./scripts/deploy.sh",
"build": "rollup -c",
"prepublish": "yarn run build"
},
"homepage": "https://webkong.github.io/vue-intersection-plugin/",
"repository": "https://github.com/webkong/vue-intersection-plugin.git",
"author": "webkong",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.2.0",
"rollup-plugin-babel": "4.0.0-beta.8",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"vuepress": "^0.14.8"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"intersection-observer": "^0.5.1",
"rollup": "^0.68.1"
}
}