package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "flagged-respawn",
  3. "version": "1.0.1",
  4. "description": "A tool for respawning node binaries when special flags are present.",
  5. "author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
  6. "contributors": [
  7. "Takayuki Sato <sttk.xslet@gmail.com>",
  8. "Bertrand Marron <bertrand.marron@ionisx.com>",
  9. "Tyler Kellen <tyler@sleekcode.net>",
  10. "Blaine Bublitz <blaine.bublitz@gmail.com>"
  11. ],
  12. "repository": "gulpjs/flagged-respawn",
  13. "license": "MIT",
  14. "engines": {
  15. "node": ">= 0.10"
  16. },
  17. "main": "index.js",
  18. "files": [
  19. "index.js",
  20. "lib/",
  21. "LICENSE"
  22. ],
  23. "scripts": {
  24. "lint": "eslint .",
  25. "pretest": "npm run lint",
  26. "test": "mocha --async-only",
  27. "cover": "nyc --reporter=lcov --reporter=text-summary npm test",
  28. "coveralls": "npm run cover && istanbul-coveralls",
  29. "respawn": "node test/bin/respawner --harmony test",
  30. "nospawn": "node test/bin/respawner test"
  31. },
  32. "dependencies": {},
  33. "devDependencies": {
  34. "eslint": "^2.13.0",
  35. "eslint-config-gulp": "^3.0.1",
  36. "expect": "^1.20.2",
  37. "istanbul": "^0.4.3",
  38. "istanbul-coveralls": "^1.0.3",
  39. "mocha": "^3.5.3",
  40. "nyc": "^11.3.0",
  41. "v8flags": "^3.0.1"
  42. },
  43. "keywords": [
  44. "respawn",
  45. "flags"
  46. ]
  47. }