-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
{
"name": "vue-masonry",
"version": "0.16.0",
"description": "masonry layout for vue.js",
"main": "src/masonry.plugin.js",
"scripts": {
"lint": "eslint --ext .js,.vue src",
"build": "webpack",
"build-umd": "TARGET=umd webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shershen08/vue-masonry.git"
},
"dependencies": {
"imagesloaded": "4.1.4",
"masonry-layout": "^4.2.2",
"mitt": "^3.0.0",
"vue-demi": "^0.13.2"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"keywords": [
"masonry",
"layout",
"vue",
"vue.js"
],
"author": "Mikhail Kuznetcov",
"license": "MIT",
"bugs": {
"url": "https://github.com/shershen08/vue-masonry/issues"
},
"homepage": "https://github.com/shershen08/vue-masonry#readme",
"devDependencies": {
"vue": "^3.0.0",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2"
}
}