Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

organize the package.json #144

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 33 additions & 33 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
{
"name": "crater",
"author": "Andy Edwards <[email protected]>",
"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",
Expand All @@ -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",
Expand All @@ -44,11 +76,6 @@
"redux": "^3.5.2",
"redux-immutablejs": "0.0.8"
},
"version": "2.0.0",
"main": "index.js",
"author": "Andy Edwards <[email protected]>",
"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",
Expand Down Expand Up @@ -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"
]
}
}