package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "papaparse",
  3. "version": "5.3.2",
  4. "description": "Fast and powerful CSV parser for the browser that supports web workers and streaming large files. Converts CSV to JSON and JSON to CSV.",
  5. "keywords": [
  6. "csv",
  7. "parser",
  8. "parse",
  9. "parsing",
  10. "delimited",
  11. "text",
  12. "data",
  13. "auto-detect",
  14. "comma",
  15. "tab",
  16. "pipe",
  17. "file",
  18. "filereader",
  19. "stream",
  20. "worker",
  21. "workers",
  22. "thread",
  23. "threading",
  24. "multi-threaded",
  25. "jquery-plugin"
  26. ],
  27. "homepage": "http://papaparse.com",
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/mholt/PapaParse.git"
  31. },
  32. "author": {
  33. "name": "Matthew Holt",
  34. "url": "https://twitter.com/mholt6"
  35. },
  36. "license": "MIT",
  37. "main": "papaparse.js",
  38. "browser": "papaparse.min.js",
  39. "devDependencies": {
  40. "chai": "^4.2.0",
  41. "connect": "^3.3.3",
  42. "eslint": "^4.19.1",
  43. "grunt": "^1.0.2",
  44. "grunt-contrib-uglify": "^3.3.0",
  45. "mocha": "^5.2.0",
  46. "mocha-headless-chrome": "^4.0.0",
  47. "open": "7.0.0",
  48. "serve-static": "^1.7.1"
  49. },
  50. "scripts": {
  51. "lint": "eslint --no-ignore papaparse.js Gruntfile.js .eslintrc.js 'tests/**/*.js'",
  52. "test-browser": "node tests/test.js",
  53. "test-mocha-headless-chrome": "node tests/test.js --mocha-headless-chrome",
  54. "test-node": "mocha tests/node-tests.js tests/test-cases.js",
  55. "test": "npm run lint && npm run test-node && npm run test-mocha-headless-chrome"
  56. }
  57. }