package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "fsevents",
  3. "version": "1.2.9",
  4. "description": "Native Access to Mac OS-X FSEvents",
  5. "main": "fsevents.js",
  6. "dependencies": {
  7. "nan": "^2.12.1",
  8. "node-pre-gyp": "^0.12.0"
  9. },
  10. "os": [
  11. "darwin"
  12. ],
  13. "engines": {
  14. "node": ">=4.0"
  15. },
  16. "scripts": {
  17. "install": "node install",
  18. "prepublish": "if [ $(npm -v | head -c 1) -lt 3 ]; then exit 1; fi && npm dedupe",
  19. "test": "node ./test/fsevents.js && node ./test/function.js 2> /dev/null",
  20. "node-pre-gyp": "node-pre-gyp"
  21. },
  22. "binary": {
  23. "module_name": "fse",
  24. "module_path": "./lib/binding/{configuration}/{node_abi}-{platform}-{arch}/",
  25. "remote_path": "./v{version}/",
  26. "package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz",
  27. "host": "https://fsevents-binaries.s3-us-west-2.amazonaws.com"
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "https://github.com/strongloop/fsevents.git"
  32. },
  33. "keywords": [
  34. "fsevents",
  35. "mac"
  36. ],
  37. "author": "Philipp Dunkel <pip@pipobscure.com>",
  38. "license": "MIT",
  39. "bugs": {
  40. "url": "https://github.com/strongloop/fsevents/issues"
  41. },
  42. "bundledDependencies": [
  43. "node-pre-gyp"
  44. ],
  45. "homepage": "https://github.com/strongloop/fsevents"
  46. }