X-Git-Url: https://git.wincent.com/hextrapolate.git/blobdiff_plain/26699532b510de68d137f32fb14889404208cb11..f6f8d5d4821fef83cd9761c2b682fcf936b2b401:/package.json diff --git a/package.json b/package.json index cd36e2d..f5d5134 100644 --- a/package.json +++ b/package.json @@ -1,42 +1,48 @@ { - "name": "react-hot-boilerplate", - "version": "1.0.0", - "description": "Boilerplate for ReactJS project with hot code reloading", + "name": "hextrapolate", + "version": "0.0.1", + "description": "Number base conversion tool", "scripts": { - "start": "node server.js", - "lint": "eslint src" + "lint": "eslint src", + "start": "gulp webpack-dev-server", + "test": "mocha --opts mocha/mocha.opts 'src/**/__mocks__/*.js' 'src/**/__tests__/*-test.js'" }, "repository": { "type": "git", - "url": "https://github.com/gaearon/react-hot-boilerplate.git" + "url": "https://github.com/wincent/hextrapolate.git" }, "keywords": [ - "react", - "reactjs", - "boilerplate", - "hot", - "reload", - "hmr", - "live", - "edit", - "webpack" + "react" ], - "author": "Dan Abramov (http://github.com/gaearon)", + "author": "Greg Hurrell (http://github.com/wincent)", "license": "MIT", "bugs": { - "url": "https://github.com/gaearon/react-hot-boilerplate/issues" + "url": "https://github.com/wincent/hextrapolate/issues" }, - "homepage": "https://github.com/gaearon/react-hot-boilerplate", + "homepage": "https://github.com/wincent/hextrapolate", "devDependencies": { + "babel": "^5.8.19", "babel-core": "^5.4.7", "babel-eslint": "^3.1.9", "babel-loader": "^5.1.2", + "css-loader": "^0.15.6", "eslint-plugin-react": "^2.3.0", + "expect": "^1.8.0", + "gulp": "^3.9.0", + "gulp-eslint": "^0.15.0", + "gulp-flowtype": "^0.4.7", + "gulp-spawn-mocha": "^2.2.1", + "gulp-util": "^3.0.6", + "mocha": "^2.2.5", "react-hot-loader": "^1.2.7", + "sinon": "^1.15.4", + "style-loader": "^0.12.3", "webpack": "^1.9.6", "webpack-dev-server": "^1.8.2" }, "dependencies": { - "react": "^0.13.0" + "classnames": "^2.1.3", + "react": "^0.13.0", + "simple-debounce": "0.0.3" } }