package.json 727 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "detect-node-es",
  3. "version": "1.1.0",
  4. "description": "Detect Node.JS (as opposite to browser environment). ESM modification",
  5. "main": "es5/node.js",
  6. "module": "esm/node.js",
  7. "browser": {
  8. "./es5/node.js": "./es5/browser.js",
  9. "./esm/node.js": "./esm/browser.js"
  10. },
  11. "types": "es5/node.d.ts",
  12. "scripts": {
  13. "test": "echo \"Error: no test specified\" && exit 1"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/thekashey/detect-node"
  18. },
  19. "keywords": [
  20. "detect",
  21. "node"
  22. ],
  23. "author": "Ilya Kantor",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/thekashey/detect-node/issues"
  27. },
  28. "homepage": "https://github.com/thekashey/detect-node"
  29. }