package.json 2.2 KB

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