package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "_from": "number-precision@1.5.0",
  3. "_id": "number-precision@1.5.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-CxmQK1FFj3G3YXS4PDZSz3+IvtNESpuMwK6JY+y4IIDBbyY1ldkvk2nqBzDJj+EKFXZrrmL/fObqtSoB8b/jZQ==",
  6. "_location": "/number-precision",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "version",
  10. "registry": true,
  11. "raw": "number-precision@1.5.0",
  12. "name": "number-precision",
  13. "escapedName": "number-precision",
  14. "rawSpec": "1.5.0",
  15. "saveSpec": null,
  16. "fetchSpec": "1.5.0"
  17. },
  18. "_requiredBy": [
  19. "/"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/number-precision/-/number-precision-1.5.0.tgz",
  22. "_shasum": "eca1e3657cc7de3778987f2d22aa9dea4be238d5",
  23. "_spec": "number-precision@1.5.0",
  24. "_where": "D:\\qianger\\7\\jindouyunNewFront",
  25. "author": {
  26. "name": "cam song"
  27. },
  28. "ava": {
  29. "files": [
  30. "build-test/**/*.test.js"
  31. ]
  32. },
  33. "bugs": {
  34. "url": "https://github.com/nefe/number-precision/issues"
  35. },
  36. "bundleDependencies": false,
  37. "deprecated": false,
  38. "description": "Perform addition, subtraction, multiplication and division operations precisely using javascript",
  39. "devDependencies": {
  40. "ava": "^3.8.2",
  41. "braces": ">=2.3.1",
  42. "codecov": "^3.1.0",
  43. "nyc": "^15.0.1",
  44. "pre-commit": "^1.2.2",
  45. "rollup": "^0.52.2",
  46. "rollup-plugin-typescript": "^0.8.1",
  47. "rollup-plugin-typescript2": "^0.8.4",
  48. "rollup-watch": "^4.3.1",
  49. "tslint": "^5.8.0",
  50. "typescript": "^3.8.3"
  51. },
  52. "homepage": "https://github.com/nefe/number-precision",
  53. "keywords": [
  54. "number precision",
  55. "floating problem",
  56. "rounding error"
  57. ],
  58. "license": "MIT",
  59. "main": "build/index.js",
  60. "module": "build/index.es.js",
  61. "name": "number-precision",
  62. "pre-commit": [
  63. "tslint"
  64. ],
  65. "repository": {
  66. "type": "git",
  67. "url": "git+https://github.com/nefe/number-precision.git"
  68. },
  69. "scripts": {
  70. "build": "rollup -c",
  71. "posttest": "codecov -f coverage/*.json -t 072762c4-c5bc-4393-bcd9-71eac9e7725b",
  72. "prepublish": "rm -rf build && tsc && npm run build",
  73. "test": "tsc -p tsconfig.test.json && nyc --reporter=lcov --reporter=text --reporter=json ava && rm -rf .nyc_output",
  74. "tslint": "tslint './src/**/*.?(ts|tsx)'",
  75. "watch": "rollup -cw"
  76. },
  77. "types": "src/index.ts",
  78. "version": "1.5.0"
  79. }