package.json 746 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "is-electron",
  3. "version": "2.2.2",
  4. "description": "Detect if running in Electron.",
  5. "homepage": "https://github.com/cheton/is-electron",
  6. "main": "index.js",
  7. "types": "index.d.ts",
  8. "files": [
  9. "index.d.ts"
  10. ],
  11. "scripts": {
  12. "test": "tap --coverage test/*.js",
  13. "coveralls": "tap --coverage --coverage-report=text-lcov test/*.js | node_modules/.bin/coveralls"
  14. },
  15. "author": "Cheton Wu <cheton@gmail.com>",
  16. "license": "MIT",
  17. "repository": {
  18. "type": "git",
  19. "url": "git@github.com:cheton/is-electron.git"
  20. },
  21. "keywords": [
  22. "atom",
  23. "electron",
  24. "renderer",
  25. "process"
  26. ],
  27. "devDependencies": {
  28. "coveralls": "^2.11.9",
  29. "tap": "^5.7.2"
  30. },
  31. "nyc": {
  32. "exclude": []
  33. }
  34. }