-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
39 lines (39 loc) · 1005 Bytes
/
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
{
"name": "vue-data-loading",
"version": "0.2.4",
"description": "Another component for infinite scroll and pull down/up to load data.",
"homepage": "http://hacknews.xyz",
"main": "dist/index.js",
"author": "bedlate <bedlate@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "node build/dev-server.js",
"start": "npm run dev",
"build": "node build/build.js",
"dist:dev": "./node_modules/.bin/webpack --config build/webpack.dist.dev.js",
"dist:prod": "./node_modules/.bin/webpack --config build/webpack.dist.prod.js",
"dist": "npm run dist:dev && npm run dist:prod"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/bedlate/vue-data-loading.git"
},
"keywords": [
"infinite-scroll",
"pull-to-refresh",
"data-loading",
"vue"
],
"dependencies": {
"vue": "^2.0.0"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}