Skip to content

Commit

Permalink
3.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nitin42 committed Feb 19, 2018
1 parent 1d7fbca commit ee31379
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "react-perf-devtool",
"version": "3.0.3",
"version": "3.0.4",
"description": "A devtool for inspecting the performance of React Components",
"main": "src/npm/index.js",
"files": ["src"],
"main": "index.js",
"files": ["lib/shared", "lib/npm"],
"author": "Nitin Tulswani",
"license": "MIT",
"peerDependencies": {
Expand All @@ -14,6 +14,10 @@
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^3.1.0",
"chart.js": "^2.7.1",
"husky": "^0.14.3",
Expand All @@ -29,10 +33,11 @@
},
"scripts": {
"test": "jest",
"build:babel": "rm -rf lib && babel src --out-dir lib",
"build:watch":
"rm -rf ./extension/build && NODE_ENV=production ./node_modules/.bin/webpack --watch --config ./webpack/webpack.config.js --progress",
"build":
"rm -rf ./extension/build && NODE_ENV=production ./node_modules/.bin/webpack --config ./webpack/webpack.config.js --progress",
"rm -rf ./extension/build && NODE_ENV=production ./node_modules/.bin/webpack --config ./webpack/webpack.config.js --progress && yarn build:babel",
"precommit": "lint-staged",
"format":
"find src -name '*.js' | xargs ./node_modules/.bin/prettier --write --no-semi --single-quote",
Expand All @@ -45,8 +50,5 @@
"./node_modules/.bin/prettier --write --no-semi --single-quote",
"git add"
]
},
"dependencies": {
"react-chartjs-2": "^2.7.0"
}
}

0 comments on commit ee31379

Please sign in to comment.