package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "cross-env",
  3. "version": "7.0.3",
  4. "description": "Run scripts that set and use environment variables across platforms",
  5. "main": "src/index.js",
  6. "bin": {
  7. "cross-env": "src/bin/cross-env.js",
  8. "cross-env-shell": "src/bin/cross-env-shell.js"
  9. },
  10. "engines": {
  11. "node": ">=10.14",
  12. "npm": ">=6",
  13. "yarn": ">=1"
  14. },
  15. "scripts": {
  16. "lint": "kcd-scripts lint",
  17. "setup": "npm install && npm run validate -s",
  18. "test": "kcd-scripts test",
  19. "test:update": "npm test -- --updateSnapshot --coverage",
  20. "validate": "kcd-scripts validate"
  21. },
  22. "files": [
  23. "src",
  24. "!__tests__"
  25. ],
  26. "keywords": [
  27. "cross-environment",
  28. "environment variable",
  29. "windows"
  30. ],
  31. "author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
  32. "license": "MIT",
  33. "dependencies": {
  34. "cross-spawn": "^7.0.1"
  35. },
  36. "devDependencies": {
  37. "kcd-scripts": "^5.5.0"
  38. },
  39. "eslintConfig": {
  40. "extends": "./node_modules/kcd-scripts/eslint.js"
  41. },
  42. "// babel 1": "this disables all built-in plugins from kcd-scripts for tests",
  43. "// babel 2": "that way we ensure that the tests run without compilation",
  44. "// babel 3": "because this module is published as-is. It is not compiled.",
  45. "babel": {},
  46. "repository": {
  47. "type": "git",
  48. "url": "https://github.com/kentcdodds/cross-env.git"
  49. },
  50. "bugs": {
  51. "url": "https://github.com/kentcdodds/cross-env/issues"
  52. },
  53. "homepage": "https://github.com/kentcdodds/cross-env#readme"
  54. }