From e24bf669194285097f1922a2812e29d43551852b Mon Sep 17 00:00:00 2001 From: Florian Mettetal Date: Sat, 22 Apr 2017 19:03:46 -0700 Subject: [PATCH] organize the package.json --- package.json | 66 ++++++++++++++++++++++++++-------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/package.json b/package.json index 7705035..682f4e5 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,33 @@ { "name": "crater", + "author": "Andy Edwards ", + "version": "2.0.0", + "license": "ISC", + "description": "Meteor(/React) app skeleton that runs your app code with pure Webpack/Babel instead of isobuild", + "repository": { + "type": "git", + "url": "git+https://github.com/jedwards1211/crater.git" + }, + "homepage": "https://github.com/jedwards1211/crater#readme", + "bugs": { + "url": "https://github.com/jedwards1211/crater/issues" + }, + "keywords": [ + "meteor", + "babel", + "webpack", + "react", + "crater" + ], + "main": "index.js", + "nyc": { + "include": [ + "src/**/*.js", + "scripts/**/*.js" + ], + "sourceMap": false, + "instrument": false + }, "scripts": { "start": "babel-node scripts/start.js", "debug": "babel-node scripts/debug.js", @@ -25,6 +53,10 @@ "lint:fix": "eslint --fix *.js src scripts test util webpack", "lint:watch": "esw -w *.js src scripts test util webpack" }, + "pre-commit": [ + "lint", + "flow" + ], "dependencies": { "babel-runtime": "^6.11.6", "bcrypt": "^1.0.1", @@ -44,11 +76,6 @@ "redux": "^3.5.2", "redux-immutablejs": "0.0.8" }, - "version": "2.0.0", - "main": "index.js", - "author": "Andy Edwards ", - "license": "ISC", - "description": "Meteor(/React) app skeleton that runs your app code with pure Webpack/Babel instead of isobuild", "devDependencies": { "assets-webpack-plugin": "^3.4.0", "async-child-process": "^1.0.0", @@ -114,32 +141,5 @@ "webpack-dev-middleware": "^1.6.1", "webpack-hot-middleware": "^2.13.2", "webpack-node-externals": "^1.3.3" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/jedwards1211/crater.git" - }, - "keywords": [ - "meteor", - "babel", - "webpack", - "react", - "crater" - ], - "bugs": { - "url": "https://github.com/jedwards1211/crater/issues" - }, - "homepage": "https://github.com/jedwards1211/crater#readme", - "nyc": { - "include": [ - "src/**/*.js", - "scripts/**/*.js" - ], - "sourceMap": false, - "instrument": false - }, - "pre-commit": [ - "lint", - "flow" - ] + } }