package.json 890 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "cephes",
  3. "description": "Implementation of special functions and distributions mathematical functions from the cephes library.",
  4. "repository": "nearform/node-cephes",
  5. "version": "1.2.0",
  6. "main": "index.js",
  7. "scripts": {
  8. "test": "tap test/*.test.js"
  9. },
  10. "dependencies": {},
  11. "devDependencies": {
  12. "@babel/core": "^7.1.0",
  13. "@babel/plugin-transform-runtime": "^7.1.0",
  14. "@babel/preset-env": "^7.1.0",
  15. "@babel/runtime": "^7.0.0",
  16. "almost-equal": "^1.1.0",
  17. "babelify": "^10.0.0",
  18. "d3-array": "^1.2.4",
  19. "d3-axis": "^1.0.12",
  20. "d3-scale": "^2.1.2",
  21. "d3-scale-chromatic": "^1.3.3",
  22. "d3-selection": "^1.3.2",
  23. "d3-shape": "^1.2.2",
  24. "pumpify": "^1.5.1",
  25. "split2": "^3.0.0",
  26. "tap": "^12.0.1",
  27. "xorshift": "^1.1.1"
  28. },
  29. "browser": {
  30. "./cephes.js": "./cephes-browser.js"
  31. },
  32. "license": "BSD-3-Clause"
  33. }