-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 2.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"author": "Muhammad Ubaid Raza <mubaidr@gmail.com>",
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"bugs": {
"url": "https://github.com/mubaidr/vue-fluent/issues"
},
"dependencies": {
"buefy": "^0.9.2",
"bulma-addons": "^0.1.12",
"bulma-fluent": "^0.4.3"
},
"description": "Fluent Design Components for Vue.js using Bulma CSS framework and Bulma-Fluent theme, inspired by Microsoft’s Fluent Design System.",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.6.1",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"node-sass": "^4.9.3",
"node-sass-import": "^2.0.1",
"poi": "^12.6.10",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"vue-template-compiler": "^2.5.17"
},
"files": [
"dist",
"src/lib",
"LICENSE",
"README.md"
],
"homepage": "https://mubaidr.github.io/vue-fluent",
"keywords": [
"vue",
"bulma",
"theme",
"fluent",
"components"
],
"license": "MIT",
"main": "src/lib/index.js",
"name": "vue-fluent",
"peerDependencies": {
"vue": "^2.5.16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mubaidr/vue-fluent.git"
},
"scripts": {
"build": "npm run build-lib-js && npm run build-lib-css",
"build-docs": "cd src/docs && npm run build && cd ../../",
"build-lib-css": "node-sass src/lib/index.sass dist/vue-fluent.min.css --output-style compressed --importer node_modules/node-sass-import",
"build-lib-js": "poi build ./src/lib/index.js --filename.js vue-fluent.min.js -d ./dist/ --format umd --module-name VueFluent --jsx vue",
"dev": "cd src/docs && npm run serve && cd ../../",
"lint": "eslint --ext .js,.vue --fix src/",
"prettier": "prettier --write ./src/**/*.js && prettier --write ./src/**/*.vue",
"upgrade": "npm-check-updates -a -u && npm install && cd src/docs && npm-check-updates -a -u && npm install"
},
"version": "0.1.3"
}