Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rearrange package.json sections #1021

Merged
merged 1 commit into from
Jun 5, 2017
Merged
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
60 changes: 30 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,27 @@
"WordPress",
"editor"
],
"scripts": {
"test-unit": "cross-env NODE_ENV=test webpack && mocha build --require bootstrap-test.js",
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack",
"gettext-strings": "cross-env BABEL_ENV=gettext webpack",
"lint": "eslint .",
"dev": "cross-env BABEL_ENV=default webpack --watch",
"test": "npm run lint && npm run test-unit",
"ci": "concurrently \"npm run build\" \"npm test\"",
"package-plugin": "./bin/build-plugin-zip.sh"
"dependencies": {
"classnames": "^2.2.5",
"dom-react": "^2.2.0",
"dom-scroll-into-view": "^1.2.1",
"element-closest": "^2.0.2",
"hpq": "^1.2.0",
"jed": "^1.1.1",
"js-beautify": "^1.6.12",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"react": "^15.5.4",
"react-autosize-textarea": "^0.4.2",
"react-click-outside": "^2.3.0",
"react-datepicker": "^0.46.0",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-slot-fill": "^1.0.0-alpha.11",
"react-transition-group": "^1.1.3",
"redux": "^3.6.0",
"refx": "^2.0.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
Expand Down Expand Up @@ -61,26 +73,14 @@
"webpack": "^2.2.1",
"webpack-node-externals": "^1.5.4"
},
"dependencies": {
"classnames": "^2.2.5",
"dom-react": "^2.2.0",
"dom-scroll-into-view": "^1.2.1",
"element-closest": "^2.0.2",
"hpq": "^1.2.0",
"jed": "^1.1.1",
"js-beautify": "^1.6.12",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"react": "^15.5.4",
"react-autosize-textarea": "^0.4.2",
"react-click-outside": "^2.3.0",
"react-datepicker": "^0.46.0",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-slot-fill": "^1.0.0-alpha.11",
"react-transition-group": "^1.1.3",
"redux": "^3.6.0",
"refx": "^2.0.0",
"uuid": "^3.0.1"
"scripts": {
"test-unit": "cross-env NODE_ENV=test webpack && mocha build --require bootstrap-test.js",
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack",
"gettext-strings": "cross-env BABEL_ENV=gettext webpack",
"lint": "eslint .",
"dev": "cross-env BABEL_ENV=default webpack --watch",
"test": "npm run lint && npm run test-unit",
"ci": "concurrently \"npm run build\" \"npm test\"",
"package-plugin": "./bin/build-plugin-zip.sh"
}
}