-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
63 lines (63 loc) · 1.35 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
{
"name": "vue-mugen-scroll",
"version": "0.2.5",
"description": "Infinite scroll component for Vue.js",
"license": "MIT",
"repository": "egoist/vue-mugen-scroll",
"author": {
"name": "EGOIST",
"email": "[email protected]",
"url": "github.com/egoist"
},
"engines": {
"node": ">=4"
},
"homepage": "https://egoistian.com/vue-mugen-scroll/",
"scripts": {
"test": "xo src/*.js && npm run build",
"example": "poi",
"example:build": "poi build",
"gh": "npm run example:build && gh-pages -d example/dist",
"build": "bili --format umd --format cjs --module-name MugenScroll --compress"
},
"files": [
"dist"
],
"main": "dist/vue-mugen-scroll.common.js",
"keywords": [
"vue",
"infinite scroll",
"scroll",
"infinite",
"ui",
"component"
],
"devDependencies": {
"aimer": "^2.0.8",
"axios": "^0.16.1",
"bili": "^0.15.3",
"eslint-config-rem": "^3.1.0",
"gh-pages": "^1.0.0",
"jest-cli": "^20.0.3",
"poi": "^8.0.5",
"postcss-nested": "^1.0.1",
"text-spinners": "^1.0.5",
"xo": "^0.18.2"
},
"xo": {
"extends": "rem",
"envs": [
"browser"
]
},
"jest": {
"testEnvironment": "node"
},
"eslintConfig": {
"extends": "egoist/esnext-browser"
},
"dependencies": {
"element-in-view": "^0.1.0",
"throttleit": "^1.0.0"
}
}