Skip to content

Commit

Permalink
Fix package.json after merge loss
Browse files Browse the repository at this point in the history
Seems like a bunch of stuff was dropped out of package.json in a merge
  • Loading branch information
outoftime committed Mar 11, 2019
1 parent 4943a4d commit d2d41fc
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions package.json
Expand Up @@ -269,9 +269,11 @@
"test": "jest",
"autotest": "jest --watchAll",
"test-deprecated": "karma start --single-run --no-auto-watch",
"autotest-deprecated": "karma start --no-single-run --auto-watch",
"lint": "eslint --report-unused-disable-directives --ext .js,.jsx --plugin react src test *.js && stylelint src/**/*.css",
"fixlint": "eslint --ext .js,.jsx --plugin react --fix src test *.js",
"autotest-deprecated": "yarn install --frozen-lockfile && karma start --no-single-run --auto-watch",
"lint-js": "eslint --max-warnings=0 --report-unused-disable-directives --ext .js,.jsx -- src test *.js",
"lint-css": "stylelint src/**/*.css",
"lint": "yarn run lint-js && yarn run lint-css",
"fixlint": "eslint --ext .js,.jsx --fix src test *.js",
"deduplicate": "yarn-deduplicate --strategy fewer",
"toc": "doctoc README.md --github --title '## Table of Contents'",
"preview": "rm -rvf dist/* && NODE_ENV=production gulp build && static -a 0.0.0.0 -p 3000 dist",
Expand Down

0 comments on commit d2d41fc

Please sign in to comment.