|
26 | 26 | "deps-license": "license-checker --production --csv --out $npm_package_config_deps_check_dir/licenses.csv && license-checker --development --csv --out $npm_package_config_deps_check_dir/licenses-dev.csv", |
27 | 27 | "deps-size": "webpack -p --config webpack/bundle.babel.js --json | webpack-bundle-size-analyzer >| $npm_package_config_deps_check_dir/sizes.txt", |
28 | 28 | "deps-check": "run-s deps-license deps-size", |
29 | | - "lint": "eslint --cache --ext '.js,.jsx' src test", |
30 | | - "lint-errors": "eslint --cache --quiet --ext '.js,.jsx' src test", |
31 | | - "lint-fix": "eslint --cache --ext '.js,.jsx' src test --fix", |
| 29 | + "lint": "eslint --cache --ext \".js,.jsx\" src test", |
| 30 | + "lint-errors": "eslint --cache --quiet --ext \".js,.jsx\" src test", |
| 31 | + "lint-fix": "eslint --cache --ext \".js,.jsx\" src test --fix", |
32 | 32 | "test": "run-s just-test-in-node e2e-cypress lint-errors", |
33 | 33 | "test-in-node": "run-s lint-errors just-test-in-node", |
34 | | - "just-test-in-node": "mocha --require test/mocha/setup.js --recursive --compilers js:@babel/register --require source-map-support 'test/mocha/**/*.{js,jsx}'", |
| 34 | + "just-test-in-node": "mocha --require test/mocha/setup.js --recursive --compilers js:@babel/register --require source-map-support \"test/mocha/**/*.{js,jsx}\"", |
35 | 35 | "test-e2e-cypress": "cypress run", |
36 | 36 | "test-e2e-selenium": "sleep 3 && nightwatch test/e2e-selenium/scenarios/ --config test/e2e-selenium/nightwatch.json", |
37 | 37 | "e2e-initial-render": "nightwatch test/e2e-selenium/scenarios/ --config test/e2e-selenium/nightwatch.json --group initial-render", |
|
40 | 40 | "hot-e2e-selenium-server": "webpack-dev-server --config webpack/dev-e2e.babel.js --content-base test/e2e-selenium/static", |
41 | 41 | "e2e-cypress": "run-p -r hot-e2e-cypress-server mock-api test-e2e-cypress", |
42 | 42 | "e2e-selenium": "run-p -r hot-e2e-selenium-server mock-api test-e2e-selenium", |
43 | | - "open-static": "node -e 'require(\"open\")(\"http://localhost:3002\")'", |
| 43 | + "open-static": "node -e \"require('open')('http://localhost:3002')\"", |
44 | 44 | "security-audit": "run-s -sc security-audit:all security-audit:prod", |
45 | 45 | "security-audit:prod": "npm-audit-ci-wrapper -p -t low", |
46 | 46 | "security-audit:all": "npm-audit-ci-wrapper -t moderate", |
|
0 commit comments