package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "cross-spawn",
  3. "version": "5.1.0",
  4. "description": "Cross platform child_process#spawn and child_process#spawnSync",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "node test/prepare && mocha --bail test/test",
  8. "lint": "eslint '{*.js,lib/**/*.js,test/**/*.js}'"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/IndigoUnited/node-cross-spawn/issues/"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/IndigoUnited/node-cross-spawn.git"
  16. },
  17. "files": [
  18. "index.js",
  19. "lib"
  20. ],
  21. "keywords": [
  22. "spawn",
  23. "spawnSync",
  24. "windows",
  25. "cross",
  26. "platform",
  27. "path",
  28. "ext",
  29. "path-ext",
  30. "path_ext",
  31. "shebang",
  32. "hashbang",
  33. "cmd",
  34. "execute"
  35. ],
  36. "author": "IndigoUnited <hello@indigounited.com> (http://indigounited.com)",
  37. "license": "MIT",
  38. "dependencies": {
  39. "lru-cache": "^4.0.1",
  40. "shebang-command": "^1.2.0",
  41. "which": "^1.2.9"
  42. },
  43. "devDependencies": {
  44. "@satazor/eslint-config": "^3.0.0",
  45. "eslint": "^3.0.0",
  46. "expect.js": "^0.3.0",
  47. "glob": "^7.0.0",
  48. "mkdirp": "^0.5.1",
  49. "mocha": "^3.0.2",
  50. "once": "^1.4.0",
  51. "rimraf": "^2.5.0"
  52. }
  53. }