-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
{
"name": "vnode2canvas",
"version": "0.2.1",
"description": "Rendering virtual DOM into canvas based on Vue plugin",
"main": "dist/main.min.js",
"scripts": {
"dev": "webpack --mode development --watch --output ./dev/main.js",
"build": "webpack --mode production --output ./dist/main.min.js",
"test": "cross-env BABEL_ENV=test karma start test/karma.conf.js"
},
"author": "muwoo",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.2.0",
"karma": "^3.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-jasmine": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^3.0.0",
"mocha": "^5.2.0",
"vue": "^2.5.16",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8"
},
"dependencies": {
"css": "^2.2.3",
"css-layout": "^1.1.1",
"scroller": "0.0.3"
}
}