This repository has been archived by the owner on Aug 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
101 lines (101 loc) · 3.01 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
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "vue-orgchart",
"description": "A vue wrapper for OrgChart.js",
"version": "1.1.7",
"author": {
"name": "spiritree",
"email": "[email protected]",
"url": "https://github.com/spiritree"
},
"files": [
"dist",
"src",
"docs"
],
"main": "dist/vue-orgchart.min.js",
"license": "MIT",
"homepage": "https://spiritree.github.io/vue-orgchart",
"bugs": {
"url": "https://github.com/spiritree/vue-orgchart/issues"
},
"scripts": {
"dev": "webpack-dev-server --config ./build/webpack.config.js",
"build": "webpack --progress --hide-modules --config ./build/webpack.config.build.js && cross-env NODE_ENV=production webpack --progress --hide-modules --config ./build/webpack.config.build.min.js",
"rollup": "node build/rollup.config.js",
"docs": "docsify serve docs --port 3002",
"test": "karma start ./test/karma.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spiritree/vue-orgchart.git"
},
"keywords": [
"vue",
"orgchart"
],
"dependencies": {
"axios": "^0.17.1",
"orgchart.js": "0.0.4",
"vue": "^2.5.13",
"vue-loader": "^14.1.1",
"vue-style-loader": "^3.1.2",
"vue-template-compiler": "^2.5.13",
"vuex": "^3.0.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"docsify-cli": "^4.2.0",
"es6-promise": "^4.1.1",
"eslint": "^4.12.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.4",
"html-webpack-plugin": "^2.30.1",
"jasmine-core": "^2.8.0",
"json-loader": "^0.5.7",
"karma": "^1.7.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.1.1",
"karma-commonjs": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "^0.0.31",
"karma-webpack": "^2.0.3",
"lodash-es": "^4.17.4",
"opn": "^5.1.0",
"rollup": "^0.52.0",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-plugin-vue": "^2.5.2",
"webpack": "^3.8.0",
"webpack-dev-server": "^2.9.1"
}
}