package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "napi-build-utils",
  3. "version": "1.0.2",
  4. "description": "A set of utilities to assist developers of tools that build N-API native add-ons",
  5. "main": "index.js",
  6. "scripts": {
  7. "doc": "jsdoc2md index.js >index.md",
  8. "test": "mocha test/ && npm run lint",
  9. "lint": "standard",
  10. "prepublishOnly": "npm run test && npm run doc"
  11. },
  12. "keywords": [
  13. "n-api",
  14. "prebuild",
  15. "prebuild-install"
  16. ],
  17. "author": "Jim Schlight",
  18. "license": "MIT",
  19. "homepage": "https://github.com/inspiredware/napi-build-utils#readme",
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/inspiredware/napi-build-utils.git"
  23. },
  24. "bugs": {
  25. "url": "https://github.com/inspiredware/napi-build-utils/issues"
  26. },
  27. "devDependencies": {
  28. "chai": "^4.1.2",
  29. "jsdoc-to-markdown": "^4.0.1",
  30. "mocha": "^5.2.0",
  31. "standard": "^12.0.1"
  32. },
  33. "binary": {
  34. "note": "napi-build-tools is not an N-API module. This entry is for unit testing.",
  35. "napi_versions": [
  36. 2,
  37. 2,
  38. 3
  39. ]
  40. }
  41. }