forked from JosephusPaye/Keen-UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.61 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
79
80
81
82
83
84
85
{
"name": "keen-ui",
"version": "0.8.9",
"description": "A lightweight but complete collection of essential UI components written with Vue and inspired by Material Design.",
"main": "dist/keen-ui.js",
"scripts": {
"test": "karma start karma.config.js",
"dev": "npm run copy:docs && webpack --config webpack.config.js",
"copy:docs": "mkdir docs && cp ./src-docs/index.html docs/index.html",
"build": "webpack --progress --hide-modules --config webpack.build.js",
"build:min": "webpack --progress --hide-modules --config webpack.build.min.js",
"build:lib": "webpack --progress --hide-modules --config webpack.lib.js",
"build:docs": "npm run copy:docs && webpack --progress --hide-modules --config webpack.docs.js",
"build:all": "npm run build && npm run build:min && npm run build:lib",
"clean:dist": "rm -r dist",
"clean:docs": "rm -r docs",
"clean:lib": "rm -r lib",
"clean:all": "npm run clean:dist && npm run clean:docs && npm run clean:lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JosephusPaye/keen-ui.git"
},
"keywords": [
"vue",
"vuejs",
"material design",
"components"
],
"files": [
"dist",
"lib",
"src",
"CHANGELOG.md",
"LICENCE",
"README.md"
],
"author": {
"name": "Josephus Paye II"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/JosephusPaye/keen-ui/issues"
},
"homepage": "https://github.com/JosephusPaye/keen-ui/",
"dependencies": {
"draggabilly": "^1.2.4",
"fuzzysearch": "^1.0.3",
"merge-options": "0.0.64",
"tether-drop": "^1.4.2",
"tether-tooltip": "^1.2.0",
"validatorjs": "^2.1.1",
"vue": "^1.0.21"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"babel-runtime": "^5.8.0",
"css-loader": "^0.23.1",
"eslint": "^3.0.1",
"eslint-config-airbnb-base": "^4.0.0",
"eslint-plugin-html": "^1.4.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.4",
"imports-loader": "^0.6.5",
"jasmine-core": "^2.4.1",
"json-loader": "^0.5.4",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-jasmine": "^0.3.8",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^1.7.0",
"phantomjs": "^2.1.3",
"phantomjs-prebuilt": "^2.1.7",
"stylus-loader": "^1.5.1",
"url-loader": "^0.5.7",
"vue-html-loader": "^1.0.0",
"vue-loader": "^8.0.0",
"vue-style-loader": "^1.0.0",
"webpack": "^1.12.14"
}
}