package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "cross-spawn",
  3. "version": "7.0.3",
  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. "prerelease": "npm t && npm run lint",
  30. "release": "standard-version",
  31. "postrelease": "git push --follow-tags origin HEAD && npm publish"
  32. },
  33. "husky": {
  34. "hooks": {
  35. "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
  36. "pre-commit": "lint-staged"
  37. }
  38. },
  39. "lint-staged": {
  40. "*.js": [
  41. "eslint --fix",
  42. "git add"
  43. ]
  44. },
  45. "commitlint": {
  46. "extends": [
  47. "@commitlint/config-conventional"
  48. ]
  49. },
  50. "dependencies": {
  51. "path-key": "^3.1.0",
  52. "shebang-command": "^2.0.0",
  53. "which": "^2.0.1"
  54. },
  55. "devDependencies": {
  56. "@commitlint/cli": "^8.1.0",
  57. "@commitlint/config-conventional": "^8.1.0",
  58. "babel-core": "^6.26.3",
  59. "babel-jest": "^24.9.0",
  60. "babel-preset-moxy": "^3.1.0",
  61. "eslint": "^5.16.0",
  62. "eslint-config-moxy": "^7.1.0",
  63. "husky": "^3.0.5",
  64. "jest": "^24.9.0",
  65. "lint-staged": "^9.2.5",
  66. "mkdirp": "^0.5.1",
  67. "rimraf": "^3.0.0",
  68. "standard-version": "^7.0.0"
  69. },
  70. "engines": {
  71. "node": ">= 8"
  72. }
  73. }