0f48388aeb802757960ea78dfff1c77e7ca1a329bca8d00583361ea5f2899f6fdbed0aaa82b821d035821013da7f8be5e3a3cc2c7fdfe3e3ff665f9177cec4 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "cross-spawn",
  3. "version": "6.0.6",
  4. "description": "Cross platform child_process#spawn and child_process#spawnSync",
  5. "keywords": [
  6. "spawn",
  7. "spawnSync",
  8. "windows",
  9. "cross-platform",
  10. "path-ext",
  11. "shebang",
  12. "cmd",
  13. "execute"
  14. ],
  15. "author": "André Cruz <andre@moxy.studio>",
  16. "homepage": "https://github.com/moxystudio/node-cross-spawn",
  17. "repository": {
  18. "type": "git",
  19. "url": "git@github.com:moxystudio/node-cross-spawn.git"
  20. },
  21. "license": "MIT",
  22. "main": "index.js",
  23. "files": [
  24. "lib"
  25. ],
  26. "scripts": {
  27. "lint": "eslint .",
  28. "test": "jest --env node --coverage",
  29. "release": "standard-version",
  30. "precommit": "lint-staged",
  31. "commitmsg": "commitlint -e $GIT_PARAMS"
  32. },
  33. "standard-version": {
  34. "scripts": {
  35. "posttag": "git push --follow-tags origin v6"
  36. }
  37. },
  38. "lint-staged": {
  39. "*.js": [
  40. "eslint --fix",
  41. "git add"
  42. ]
  43. },
  44. "commitlint": {
  45. "extends": [
  46. "@commitlint/config-conventional"
  47. ]
  48. },
  49. "dependencies": {
  50. "nice-try": "^1.0.4",
  51. "path-key": "^2.0.1",
  52. "semver": "^5.5.0",
  53. "shebang-command": "^1.2.0",
  54. "which": "^1.2.9"
  55. },
  56. "devDependencies": {
  57. "@commitlint/cli": "^6.0.0",
  58. "@commitlint/config-conventional": "^6.0.2",
  59. "babel-core": "^6.26.0",
  60. "babel-jest": "^22.1.0",
  61. "babel-preset-moxy": "^2.2.1",
  62. "eslint": "^4.3.0",
  63. "eslint-config-moxy": "^5.0.0",
  64. "husky": "^0.14.3",
  65. "jest": "^22.0.0",
  66. "lint-staged": "^7.0.0",
  67. "mkdirp": "^0.5.1",
  68. "regenerator-runtime": "^0.11.1",
  69. "rimraf": "^2.6.2",
  70. "standard-version": "^4.2.0"
  71. },
  72. "engines": {
  73. "node": ">=4.8"
  74. }
  75. }