package.json 784 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "android-versions",
  3. "version": "1.9.0",
  4. "description": "Get the name, API level, version level, NDK level, or version code from any version of Android.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "tape tests/**/*.js",
  8. "jshint": "jshint ."
  9. },
  10. "dependencies": {
  11. "semver": "^7.5.2"
  12. },
  13. "devDependencies": {
  14. "jshint": "^2.13.6",
  15. "tape": "^5.7.2"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/dvoiss/android-versions"
  20. },
  21. "bugs": {
  22. "url": "https://github.com/dvoiss/android-versions/issues"
  23. },
  24. "keywords": [
  25. "android",
  26. "version",
  27. "versions",
  28. "ndk",
  29. "nougat",
  30. "marshmallow",
  31. "api",
  32. "level"
  33. ],
  34. "pre-commit": [
  35. "jshint"
  36. ],
  37. "author": "dvoiss",
  38. "license": "MIT"
  39. }