-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
89 lines (89 loc) · 2.78 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
86
87
88
89
{
"name": "vue-minder",
"version": "1.0.0",
"title": "Vue kityminder",
"description": "Vue Kityminder",
"homepage": "https://github.com/hexyun/vue-minder",
"keywords": [
"kityminder",
"vue",
"vue.js",
"component",
"components",
"ui",
"framework",
"baidu naotu"
],
"main": "dist/minder.min.js",
"files": [
"dist",
"src"
],
"scripts": {
"dev": "npm run build:style && npm run copy:example && webpack-dev-server --content-base examples/ --open --inline --hot --compress --history-api-fallback --port 10000 --config build/webpack.dev.config.js",
"build:style": "gulp --gulpfile build/build-style.js",
"docs": "webpack --config build/webpack.docs.config.js && npm run copy:docs",
"build:prod": "npm run build:style && webpack --config build/webpack.dist.prod.config.js",
"build": "rm -fr docs dist && npm run svgo && npm run build:prod && npm run docs",
"svgo": "svgo --enable=removeXMLNS src/components/icon/icons/*.svg",
"copy:docs": "cp -r dist/styles docs",
"copy:example": "cp -r dist/styles examples",
"copy": "npm run copy:docs && npm run copy:example",
"lint": "eslint --fix --ext .js,.vue src",
"test": "npm run build && npm run lint",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/vue-minder"
},
"author": "jiangtao",
"license": "MIT",
"bugs": {
"url": "https://github.com/vue-minder/issues"
},
"dependencies": {
"bootstrap": "^3.4.1",
"core-js": "^2.4.1",
"hotbox": "fex-team/hotbox",
"kity": "^2.0.4",
"kityminder-core": "github:jiangtao/kityminder-core",
"vue": "1.0.28"
},
"devDependencies": {
"autoprefixer-loader": "^2.0.0",
"babel": "^6.3.13",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.23.1",
"ejs-html-loader": "^4.0.1",
"eslint": "^3.12.2",
"eslint-plugin-html": "^1.7.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-clean-css": "^2.0.13",
"gulp-less": "^3.1.0",
"gulp-rename": "^1.2.2",
"html-loader": "^0.3.0",
"html-webpack-include-assets-plugin": "^1.0.7",
"html-webpack-plugin": "^3.2.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"vue-hot-reload-api": "^1.3.3",
"vue-html-loader": "^1.2.3",
"vue-loader": "^8.5.3",
"vue-router": "^0.7.13",
"vue-style-loader": "^1.0.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.16.1"
}
}