UNPKG

2.85 kBJSONView Raw
1{
2 "name": "buefy",
3 "version": "0.2.1",
4 "homepage": "https://buefy.github.io",
5 "description": "Lightweight UI components for Vue.js based on Bulma",
6 "author": "Rafael Beraldo <rafael.pimpa@gmail.com>",
7 "license": "MIT",
8 "main": "lib/src/index.js",
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/rafaelpimpa/buefy.git"
12 },
13 "bugs": {
14 "url": "https://github.com/rafaelpimpa/buefy/issues"
15 },
16 "scripts": {
17 "dev": "node build/dev-server.js",
18 "build:lib:clean": "rimraf lib",
19 "build:lib:js": "vue build src/index.js --prod --lib Buefy --dist lib",
20 "build:lib:sass": "node-sass --output-style expanded --source-map true --include-path node_modules src/scss/buefy-build.scss lib/buefy.css",
21 "build:lib:autoprefix": "postcss --use autoprefixer --output lib/buefy.css lib/buefy.css",
22 "build:lib": "npm run build:lib:clean && npm run build:lib:js && npm run build:lib:sass && npm run build:lib:autoprefix",
23 "build:docs": "node build/build.js",
24 "build": "npm run build:lib && npm run build:docs"
25 },
26 "keywords": [
27 "bulma",
28 "vue",
29 "vuejs",
30 "vue-bulma",
31 "components"
32 ],
33 "dependencies": {
34 "vue": "^2.2.2",
35 "bulma": "^0.4.0"
36 },
37 "devDependencies": {
38 "autoprefixer": "^6.7.2",
39 "babel-core": "^6.22.1",
40 "babel-loader": "^6.2.10",
41 "babel-plugin-transform-runtime": "^6.22.0",
42 "babel-preset-env": "^1.2.1",
43 "babel-preset-stage-2": "^6.22.0",
44 "babel-register": "^6.22.0",
45 "bluebird": "^3.5.0",
46 "chalk": "^1.1.3",
47 "connect-history-api-fallback": "^1.3.0",
48 "copy-webpack-plugin": "^4.0.1",
49 "css-loader": "^0.26.1",
50 "eslint": "^3.19.0",
51 "eslint-config-vue": "^2.0.2",
52 "eslint-plugin-vue": "^2.0.1",
53 "eventsource-polyfill": "^0.9.6",
54 "express": "^4.14.1",
55 "extract-text-webpack-plugin": "^2.0.0",
56 "file-loader": "^0.10.0",
57 "friendly-errors-webpack-plugin": "^1.1.3",
58 "function-bind": "^1.1.0",
59 "highlight.js": "^9.10.0",
60 "html-webpack-plugin": "^2.28.0",
61 "http-proxy-middleware": "^0.17.3",
62 "node-sass": "^4.5.2",
63 "opn": "^4.0.2",
64 "optimize-css-assets-webpack-plugin": "^1.3.0",
65 "ora": "^1.1.0",
66 "postcss-cli": "^3.0.0",
67 "rimraf": "^2.6.0",
68 "sass-loader": "^6.0.3",
69 "scrollreveal": "^3.3.5",
70 "semver": "^5.3.0",
71 "url-loader": "^0.5.7",
72 "vue-loader": "^11.1.4",
73 "vue-progressbar": "^0.7.1",
74 "vue-router": "^2.2.0",
75 "vue-style-loader": "^2.0.0",
76 "vue-template-compiler": "^2.2.4",
77 "webpack": "^2.2.1",
78 "webpack-bundle-analyzer": "^2.2.1",
79 "webpack-dev-middleware": "^1.10.0",
80 "webpack-hot-middleware": "^2.16.1",
81 "webpack-merge": "^2.6.1"
82 },
83 "engines": {
84 "node": ">= 4.0.0",
85 "npm": ">= 3.0.0"
86 },
87 "browserslist": [
88 "> 1%",
89 "last 2 versions",
90 "not ie < 10"
91 ]
92}