package.json 694 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "pdfast",
  3. "version": "0.2.0",
  4. "description": "Fast kernel density estimation library",
  5. "main": "src/index.js",
  6. "keywords": [
  7. "pdf",
  8. "kde",
  9. "probabilty",
  10. "density",
  11. "function",
  12. "estimation",
  13. "kernel",
  14. "estimator"
  15. ],
  16. "repository": "gyosh/pdfast",
  17. "bugs": {
  18. "url": "https://github.com/gyosh/pdfast"
  19. },
  20. "homepage": "https://github.com/gyosh/pdfast",
  21. "scripts": {
  22. "test": "mocha --timeout 10000 $(find tests -name *.spec.js)"
  23. },
  24. "author": "William Gozali <will.gozali@gmail.com>",
  25. "license": "MIT",
  26. "devDependencies": {
  27. "chai": "^3.5.0",
  28. "lodash": "^4.14.2",
  29. "mocha": "^3.0.2",
  30. "rewire": "^2.5.2"
  31. }
  32. }