update dependencies

This commit is contained in:
jiaming743 2019-09-03 11:07:26 +08:00
parent 5224e80321
commit 170facb3fc
1 changed files with 15 additions and 4 deletions

View File

@ -9,8 +9,8 @@
"url": "https://github.com/jiaming743/DataV.git" "url": "https://github.com/jiaming743/DataV.git"
}, },
"scripts": { "scripts": {
"compile": "node publish.js", "build": "node build/index.js",
"prepublish": "npm run compile", "prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"license": "MIT", "license": "MIT",
@ -24,10 +24,21 @@
"datavisual" "datavisual"
], ],
"dependencies": { "dependencies": {
"@jiaminghi/charts": "*" "@jiaminghi/charts": "*",
"@babel/runtime": "^7.5.5"
}, },
"homepage": "https://github.com/jiaming743/DataV#readme", "homepage": "https://github.com/jiaming743/DataV#readme",
"devDependencies": { "devDependencies": {
"@jiaminghi/fs": "0.0.1" "@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@jiaminghi/fs": "0.0.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.3",
"rollup-plugin-vue": "^5.0.1",
"vue-template-compiler": "^2.6.10"
} }
} }