Skip to content

Commit

Permalink
Run npm init
Browse files Browse the repository at this point in the history
I was having some problems publishing the package, so I decided to run
`npm init` and check in the changes it made.
  • Loading branch information
lencioni committed Apr 25, 2015
1 parent 957e015 commit d631cde
Showing 1 changed file with 23 additions and 7 deletions.
30 changes: 23 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@
"main": "build/npm/pie_chart.js",
"repository": {
"type": "git",
"url": "https://github.com/brigade/react-simple-pie-chart.git"
"url": "git+https://github.com/brigade/react-simple-pie-chart.git"
},
"homepage": "https://github.com/brigade/react-simple-pie-chart",
"bugs": "https://github.com/brigade/react-simple-pie-chart/issues",
"bugs": {
"url": "https://github.com/brigade/react-simple-pie-chart/issues"
},
"scripts": {
"build-npm": "rm -rf build/npm && mkdir -p build/npm && babel src/pie_chart.jsx --out-file build/npm/pie_chart.js",
"test": "./node_modules/.bin/eslint . && ./node_modules/.bin/karma start",
"test": "eslint . && ./node_modules/.bin/karma start",
"prepublish": "npm run build-npm"
},
"author": "Brigade Engineering",
"contributors": [
{
"name": "Joe Lencioni"
}
"Joe Lencioni"
],
"license": "MIT",
"peerDependencies": {
Expand Down Expand Up @@ -47,5 +47,21 @@
"charting",
"data visualization",
"pie chart"
]
],
"dependencies": {
"babel": "^5.1.12",
"babel-core": "^5.1.12",
"babel-loader": "^5.0.0",
"eslint": "^0.20.0",
"jasmine-core": "^2.2.0",
"eslint-plugin-react": "^2.2.0",
"karma": "^0.12.32",
"karma-chrome-launcher": "^0.1.8",
"karma-cli": "^0.0.4",
"karma-firefox-launcher": "^0.1.4",
"karma-jasmine": "^0.3.5",
"karma-webpack": "^1.5.0",
"react": "^0.13.2",
"webpack": "^1.8.9"
}
}

0 comments on commit d631cde

Please sign in to comment.