-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
48 lines (48 loc) · 1.32 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
{
"name": "vue-masonry-css",
"version": "1.0.3",
"description": "Vue Masonry component powered by CSS, dependancy free",
"main": "dist/vue-masonry.common.js",
"module": "dist/vue-masonry.es2015.js",
"unpkg": "dist/vue-masonry.min.js",
"jsdelivr": "dist/vue-masonry.min.js",
"scripts": {
"build": "node ./build.js && npm run build:demo",
"build:demo": "cd ./demo && webpack",
"dev": "cd ./demo && webpack-dev-server --progress --colors",
"preversion": "npm run build",
"prepublishOnly": "npm run build",
"publish-package": "git push && git push --tags && npm publish --registry=https://registry.npmjs.org/"
},
"files": [
"dist"
],
"keywords": [
"vue",
"vue.js",
"masonry",
"masonary",
"component",
"css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/paulcollett/vue-masonry-css.git"
},
"author": "Paul Collett",
"license": "MIT",
"bugs": {
"url": "https://github.com/paulcollett/vue-masonry-css/issues"
},
"homepage": "https://github.com/paulcollett/vue-masonry-css#readme",
"devDependencies": {
"buble-loader": "^0.4.1",
"rollup": "^0.50.0",
"rollup-plugin-buble": "^0.16.0",
"uglify-js": "^3.1.3",
"vue": "^2.5.16",
"vue-dummy": "^1.1.1",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
}
}