-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.22 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
{
"name": "sushi.js",
"description": "A modular UI library for Vue.js",
"version": "0.1.9",
"author": "Walraz <[email protected]>",
"private": false,
"homepage": "http://walraz.github.io/sushi.js/",
"keywords": [
"ui",
"ui library",
"ui framework",
"vue",
"vue 2",
"vue2",
"vuejs",
"material design",
"material",
"components"
],
"engines": {
"node": ">=8.4.0"
},
"main": "./dist/sushi.js",
"repository": {
"type": "git",
"url": "https://github.com/Walraz/sushi.js"
},
"files": [
"dist",
"src"
],
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --config ./build/webpack.config.js --open --hot",
"build": "rm -rf dist && cross-env NODE_ENV=production webpack --config ./build/webpack.dist.config.js --progress --hide-modules",
"docs": "rm -rf docs && npm run md && cross-env NODE_ENV=production webpack --config ./build/webpack.docs.config.js --progress --hide-modules",
"md": "vuedoc.md src/components/**/*.vue --output example/assets/md"
},
"dependencies": {
"vue": "^2.3.3"
},
"devDependencies": {
"@vuedoc/md": "^0.7.1",
"autoprefixer": "^7.1.4",
"babel-core": "^6.0.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.5.1",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.9.0",
"html-loader": "^0.5.1",
"html-webpack-exclude-assets-plugin": "^0.0.5",
"html-webpack-plugin": "^2.30.1",
"markdown-loader": "^2.0.1",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"pug": "^2.0.0-rc.4",
"pug-loader": "^2.3.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"vue-loader": "^12.1.0",
"vue-router": "^3.0.0",
"vue-template-compiler": "^2.3.3",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.4.5"
},
"browserslist": [
"ie >= 11",
"safari >= 9",
"last 2 versions",
"> 1%"
],
"license": "MIT"
}