2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-17 01:30:33 +03:00

es2015-ify source

This commit is contained in:
Declan de Wet
2016-10-31 22:16:43 +02:00
parent f8b6ded280
commit 64dcc9720a
9 changed files with 122 additions and 56 deletions
+8 -5
View File
@@ -4,10 +4,15 @@
"version": "0.0.0",
"author": "Declan de Wet <declandewet@me.com>",
"bugs": "https://github.com/declandewet/vue-meta/issues",
"dependencies": {
"deepmerge": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"css-loader": "^0.25.0",
"doctoc": "^1.2.0",
@@ -17,6 +22,7 @@
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^1.8.0",
"mocha": "^3.1.2",
@@ -55,12 +61,12 @@
"type": "git"
},
"scripts": {
"dev": "node examples/server.js",
"build": "rollup -c",
"dev": "babel-node examples/server.js",
"lint": "standard --verbose | snazzy",
"test": "karma start karma.conf.js",
"prebuild": "rimraf lib",
"pretest": "npm run lint",
"test": "karma start karma.conf.js",
"toc": "doctoc README.md --title '# Table of Contents'"
},
"standard": {
@@ -71,8 +77,5 @@
"it",
"expect"
]
},
"dependencies": {
"deepmerge": "^1.2.0"
}
}