-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
121 lines (121 loc) · 3.89 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "vue-diagram-editor",
"version": "1.2.1",
"description": "Highly customizable diagram editor support for Vue.js",
"author": "Maksim Kutishchev <max@amopro.ru>",
"license": "Apache-2.0",
"homepage": "https://vue-diagram-editor.js.org",
"repository": "max-kut/vue-diagram-editor",
"main": "dist/vue-diagram-editor.cjs.js",
"unpkg": "dist/vue-diagram-editor.umd.min.js",
"css": "dist/vue-diagram-editor.min.css",
"files": [
"src",
"dist"
],
"scripts": {
"dev": "node build/dev-server.js",
"build-library": "node build/build-library.js",
"build-docs": "rimraf gh-pages && mkdir gh-pages && node build/build-docs.js",
"preview-docs": "http-server gh-pages",
"gh-pages": "npm run build-docs && gh-pages --dist gh-pages --branch gh-pages --dotfiles",
"lint:js": "eslint --ext .js --ext .vue --cache --cache-location node_modules/.cache/eslint --rule 'no-console: 2' .",
"lint:css": "stylelint '**/*.scss'",
"lint": "npm run lint:js && npm run lint:css"
},
"pre-commit": "lint",
"dependencies": {
"lodash": "^4.0.0",
"svg-pan-zoom": "^3.0",
"ulid": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/plugin-syntax-jsx": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.3.1",
"@vue/test-utils": "1.0.0-beta.16",
"autoprefixer": "^9.4.6",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.0",
"babel-plugin-istanbul": "^5.0.1",
"babel-plugin-transform-vue-jsx": "^4.0.1",
"bootstrap": "^4.6.0",
"cache-loader": "^4.0.1",
"chalk": "^2.3.2",
"codecov": "^3.0.0",
"codemirror": "^5.59.4",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"entities": "^2.0.0",
"eslint": "^6.8.0",
"eslint-friendly-formatter": "^4.0.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-unicorn": "^12.1.0",
"eslint-plugin-vue": "^6.2.2",
"eventsource-polyfill": "^0.9.6",
"express": "^4.16.3",
"friendly-errors-webpack-plugin": "^1.7.0",
"gh-pages": "^2.0.0",
"handlebars-loader": "^1.7.1",
"html-webpack-plugin": "^4.5.2",
"http-server": "^0.11.1",
"jasmine-core": "^3.1.0",
"jstransformer-markdown-it": "^2.0.0",
"karma": "^4.0.0",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage": "^2.0.1",
"karma-jasmine": "^2.0.0",
"karma-jasmine-matchers": "^4.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.2",
"mini-css-extract-plugin": "^0.8.0",
"node-html-parser": "^3.0.4",
"open": "^7.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"ora": "^4.0.1",
"postcss-loader": "^3.0.0",
"pre-commit": "^1.2.2",
"puppeteer": "^2.0.0",
"raw-loader": "^3.0.0",
"regenerator-runtime": "^0.13.1",
"rimraf": "^3.0.0",
"run-series": "^1.1.8",
"sass": "^1.29.0",
"sass-loader": "^7.0",
"script-loader": "^0.7.2",
"shallow-equal": "^1.0.0",
"shelljs": "^0.8.1",
"string.prototype.repeat": "^0.2.0",
"strip-indent": "^3.0.0",
"stylelint": "^11.0.0",
"stylelint-config-xo-space": "^0.13.0",
"terser-webpack-plugin": "^2.1.0",
"url-loader": "^2.0.1",
"vue": "^2.6.0",
"vue-loader": "^15.6.0",
"vue-style-loader": "^4.0.2",
"vue-template-compiler": "^2.4.4",
"webpack": "^4.6.0",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-cdn-plugin": "^3.1.4",
"webpack-dev-middleware": "^3.1.0",
"webpack-hot-middleware": "^2.18.0",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^2.5",
"yaku": "^0.19.3"
},
"keywords": [
"vue",
"component",
"diagram",
"diagram-editor",
"editor"
]
}