Last active
December 31, 2015 04:07
-
-
Save vidaaudrey/684a9ed59e60069eb9bc to your computer and use it in GitHub Desktop.
ES6 Package setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "todo-redux-30-steps", | |
"version": "1.0.0", | |
"description": "A simple todo app", | |
"main": "index.js", | |
"scripts": { | |
"test": "mocha --compilers js:babel-core/register --require ./test/test_helpers.js --recursive", | |
"test:watch": "npm run test -- --watch", | |
"lintt": "eslint -c .eslintrc src test", | |
"lint": " node_modules/.bin/eslint test src --fix" | |
}, | |
"keywords": [ | |
"a simple todo app" | |
], | |
"author": "Audrey Li", | |
"license": "ISC", | |
"devDependencies": { | |
"babel-cli": "^6.3.17", | |
"babel-core": "^6.3.26", | |
"babel-eslint": "^4.1.6", | |
"babel-preset-es2015": "^6.3.13", | |
"chai": "^3.4.1", | |
"chai-immutable": "^1.5.3", | |
"eslint": "1.10.3", | |
"eslint-config-airbnb": "0.1.0", | |
"eslint-loader": "^1.0.0", | |
"eslint-plugin-import": "^0.8.0", | |
"eslint-plugin-react": "^3.5.0", | |
"mocha": "^2.3.4" | |
}, | |
"dependencies": { | |
"immutable": "^3.7.6" | |
}, | |
"babel": { | |
"presets": [ | |
"es2015" | |
] | |
}, | |
"eslintConfig": { | |
"env": { | |
"browser": true, | |
"node": true | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment