forked from JosephusPaye/Keen-UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.4 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
72
73
74
75
76
77
78
{
"name": "keen-ui",
"version": "1.3.0",
"description": "Keen UI is a Vue.js UI library with a simple API, inspired by Google's Material Design.",
"main": "dist/keen-ui.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.dev.js --inline --hot",
"build": "webpack --config build/webpack.dist.js",
"build:docs": "webpack --config build/webpack.docs.js",
"build:lib": "webpack --config build/webpack.lib.js",
"build:all": "npm run build && npm run build:lib && npm run build:docs",
"prod": "cross-env NODE_ENV=production npm run build && cross-env NODE_ENV=production npm run build:lib && cross-env NODE_ENV=production npm run build:docs",
"clean": "rimraf ./dist ./lib ./docs/docs.bundle.css ./docs/docs.bundle.js",
"lint": "eslint --format=node_modules/eslint-formatter-pretty --ext .js,.vue,.html ./",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JosephusPaye/Keen-UI.git"
},
"keywords": [
"vue",
"vuejs",
"material design",
"components",
"ui"
],
"files": [
"dist",
"lib",
"src",
"CHANGELOG.md",
"LICENCE",
"README.md",
"yarn.lock"
],
"author": {
"name": "Josephus Paye II"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/JosephusPaye/Keen-UI/issues"
},
"homepage": "https://github.com/JosephusPaye/Keen-UI/",
"dependencies": {
"autosize": "^3.0.20",
"deepmerge": "^2.0.1",
"fuzzysearch": "^1.0.3",
"lodash.debounce": "^4.0.8",
"tippy.js": "^4.2.1"
},
"devDependencies": {
"autoprefixer": "^6.5.4",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"eslint": "^3.12.0",
"eslint-config-xo": "^0.17.0",
"eslint-formatter-pretty": "^1.1.0",
"eslint-plugin-html": "^1.7.0",
"eslint-plugin-no-use-extend-native": "^0.3.12",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-unicorn": "^1.0.0",
"extract-text-webpack-plugin": "2.0.0-beta.5",
"node-sass": "^v4.9.0",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"vue": "^2.5.0",
"vue-loader": "^13.0.4",
"vue-router": "^2.7.0",
"vue-template-compiler": "^2.5.0",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0"
}
}