forked from wangpin34/vue-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.12 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
{
"name": "vue-scroll",
"version": "2.1.7",
"description": "scroll directive for vuejs 2.0",
"main": "dist/vue-scroll.common.js",
"module": "dist/vue-scroll.esm.js",
"unpkg": "dist/vue-scroll.js",
"scripts": {
"dev:dist": "rollup -wm -c build/rollup.dev.config.js",
"build": "node build/build.js"
},
"repository": {
"type": "git",
"url": "git@github.com:wangpin34/vue-scroll"
},
"bugs": {
"url": "https://github.com/wangpin34/vue-scroll/issues"
},
"keywords": [
"vue",
"vuejs",
"directive",
"scroll"
],
"author": "wangpin",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.4"
},
"peerDependencies": {
"vue": "^2.1.4"
},
"devDependencies": {
"rollup": "^0.52.1",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-strip": "^1.1.1",
"uglify-js": "^3.2.1",
"zlib": "^1.0.5"
},
"browser": {
"vue": "vue/dist/vue-scroll.min.js"
},
"files": [
"dist/**"
]
}