1
0
mirror of https://github.com/BoostIo/Boostnote synced 2026-01-27 15:47:15 +00:00

init dataApi method test

This commit is contained in:
Dick Choi
2016-08-24 03:00:49 +09:00
parent ad33e9f32d
commit 52d065a38d
7 changed files with 219 additions and 3 deletions

View File

@@ -9,7 +9,8 @@
"webpack": "webpack-dev-server --hot --inline --config webpack.config.js",
"postinstall": "npm run vendor",
"vendor": "oh-my-cdn",
"compile": "grunt compile"
"compile": "grunt compile",
"test": "ava"
},
"config": {
"electron-version": "1.2.8"
@@ -60,20 +61,25 @@
"superagent-promise": "^1.0.3"
},
"devDependencies": {
"ava": "^0.16.0",
"babel": "^6.5.2",
"babel-core": "^6.3.26",
"babel-loader": "^6.2.0",
"babel-plugin-module-alias": "^1.6.0",
"babel-plugin-react-transform": "^2.0.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.1",
"babel-register": "^6.11.6",
"css-loader": "^0.19.0",
"devtron": "^1.1.0",
"dom-storage": "^2.0.2",
"electron-packager": "^6.0.0",
"electron-prebuilt": "^1.2.8",
"electron-release": "^2.2.0",
"grunt": "^0.4.5",
"grunt-electron-installer": "^1.2.0",
"history": "^1.17.0",
"jsdom": "^9.4.2",
"merge-stream": "^1.0.0",
"nib": "^1.1.0",
"oh-my-cdn": "^0.1.1",
@@ -99,5 +105,14 @@
"globals": [
"localStorage"
]
},
"ava": {
"files": [
"tests/**/*.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
}
}