Skip to content

Instantly share code, notes, and snippets.

@buddhike
Created May 26, 2016 02:33
Show Gist options
  • Save buddhike/4bf97138508ca4838ecc05af1122e619 to your computer and use it in GitHub Desktop.
Save buddhike/4bf97138508ca4838ecc05af1122e619 to your computer and use it in GitHub Desktop.
{
"name": "TODO",
"version": "0.0.1",
"description": "TODO",
"author": "TODO",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "babel lib/ -d dist/ --source-maps",
"eslint": "eslint src",
"test": "istanbul cover node_modules/.bin/_mocha -- -u exports --compilers js:babel-register -R spec -r test/setup.js test/*{,*/}*.js",
"watch": "nodemon --ignore dist/ --ignore node_modules/ --exec 'npm run eslint && npm run test && npm run build'",
"server": "nodemon --ignore node_modules/ dist/index.js",
"start": "npm run watch & npm run server"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-async-to-generator": "^6.7.4",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"eslint": "^2.9.0",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^2.4.5",
"nodemon": "^1.9.2",
"proxyquire": "^1.7.4",
"sinon": "^1.17.4"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment