-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "vue-long-list",
"version": "0.1.1",
"private": false,
"description": "一个简单实现的vue虚拟列表",
"author": "dongj0316",
"scripts": {
"serve": "vue-cli-service serve",
"build": "npm run build-lib && npm run build-demo",
"lint": "vue-cli-service lint",
"build-demo": "vue-cli-service build --dest demo",
"build-lib": "vue-cli-service build --target lib --name vue-long-list --dest dist vue-long-list/index.js"
},
"dependencies": {
"core-js": "^3.3.2",
"vue": "^2.6.10",
"vue-router": "^3.1.3",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.0-beta.0",
"@vue/cli-plugin-eslint": "^4.1.0-beta.0",
"@vue/cli-plugin-router": "^4.1.0-beta.0",
"@vue/cli-plugin-vuex": "^4.1.0-beta.0",
"@vue/cli-service": "^4.1.0-beta.0",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"vue-template-compiler": "^2.6.10"
},
"keyword": [
"vue",
"vue-long-list"
],
"license": "MIT",
"main": "dist/vue-long-list.umd.min.js",
"repository": {
"type": "git",
"url": "https://github.com/dongj0316/vue-long-list"
}
}