GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
791 B

2 months ago
  1. {
  2. "name": "long",
  3. "version": "4.0.0",
  4. "author": "Daniel Wirtz <dcode@dcode.io>",
  5. "description": "A Long class for representing a 64-bit two's-complement integer value.",
  6. "main": "src/long.js",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/dcodeIO/long.js.git"
  10. },
  11. "bugs": {
  12. "url": "https://github.com/dcodeIO/long.js/issues"
  13. },
  14. "keywords": [
  15. "math"
  16. ],
  17. "dependencies": {},
  18. "devDependencies": {
  19. "webpack": "^3.10.0"
  20. },
  21. "license": "Apache-2.0",
  22. "scripts": {
  23. "build": "webpack",
  24. "test": "node tests"
  25. },
  26. "files": [
  27. "index.js",
  28. "LICENSE",
  29. "README.md",
  30. "src/long.js",
  31. "dist/long.js",
  32. "dist/long.js.map"
  33. ]
  34. }