package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "browserslist",
  3. "version": "3.2.8",
  4. "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
  5. "keywords": [
  6. "caniuse",
  7. "browsers",
  8. "target"
  9. ],
  10. "author": "Andrey Sitnik <andrey@sitnik.ru>",
  11. "license": "MIT",
  12. "repository": "browserslist/browserslist",
  13. "dependencies": {
  14. "caniuse-lite": "^1.0.30000844",
  15. "electron-to-chromium": "^1.3.47"
  16. },
  17. "bin": "./cli.js",
  18. "devDependencies": {
  19. "cross-spawn": "^6.0.5",
  20. "eslint": "^4.19.1",
  21. "eslint-ci": "^0.1.1",
  22. "eslint-config-logux": "^22.1.0",
  23. "eslint-config-standard": "^11.0.0",
  24. "eslint-plugin-es5": "^1.3.1",
  25. "eslint-plugin-import": "^2.12.0",
  26. "eslint-plugin-jest": "^21.15.1",
  27. "eslint-plugin-node": "^6.0.1",
  28. "eslint-plugin-promise": "^3.7.0",
  29. "eslint-plugin-security": "^1.4.0",
  30. "eslint-plugin-standard": "^3.1.0",
  31. "fs-extra": "^5.0.0",
  32. "jest": "^22.4.4",
  33. "lint-staged": "^7.1.2",
  34. "pre-commit": "^1.1.3",
  35. "size-limit": "^0.18.0",
  36. "yaspeller-ci": "^1.0.0"
  37. },
  38. "jest": {
  39. "testEnvironment": "node",
  40. "coverageThreshold": {
  41. "global": {
  42. "statements": 100
  43. }
  44. },
  45. "modulePathIgnorePatterns": [
  46. "<rootDir>/test/fixtures"
  47. ]
  48. },
  49. "scripts": {
  50. "lint-staged": "lint-staged",
  51. "spellcheck": "yaspeller-ci README.md CHANGELOG.md",
  52. "lint": "eslint-ci *.js test/*.js benchmark/*.js",
  53. "test": "jest --coverage && yarn lint && yarn spellcheck && size-limit"
  54. },
  55. "browser": {
  56. "./node.js": "./browser.js",
  57. "path": false
  58. },
  59. "pre-commit": [
  60. "lint-staged"
  61. ]
  62. }