package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "cross-spawn",
  3. "version": "6.0.5",
  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. "precommit": "lint-staged",
  32. "commitmsg": "commitlint -e $GIT_PARAMS"
  33. },
  34. "standard-version": {
  35. "scripts": {
  36. "posttag": "git push --follow-tags origin master && npm publish"
  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. "nice-try": "^1.0.4",
  52. "path-key": "^2.0.1",
  53. "semver": "^5.5.0",
  54. "shebang-command": "^1.2.0",
  55. "which": "^1.2.9"
  56. },
  57. "devDependencies": {
  58. "@commitlint/cli": "^6.0.0",
  59. "@commitlint/config-conventional": "^6.0.2",
  60. "babel-core": "^6.26.0",
  61. "babel-jest": "^22.1.0",
  62. "babel-preset-moxy": "^2.2.1",
  63. "eslint": "^4.3.0",
  64. "eslint-config-moxy": "^5.0.0",
  65. "husky": "^0.14.3",
  66. "jest": "^22.0.0",
  67. "lint-staged": "^7.0.0",
  68. "mkdirp": "^0.5.1",
  69. "regenerator-runtime": "^0.11.1",
  70. "rimraf": "^2.6.2",
  71. "standard-version": "^4.2.0"
  72. },
  73. "engines": {
  74. "node": ">=4.8"
  75. }
  76. }