package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "serialize-json",
  3. "version": "1.0.3",
  4. "description": "A serialize algorithm for JSON",
  5. "main": "lib/index.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "scripts": {
  10. "autod": "autod",
  11. "pkgfiles": "egg-bin pkgfiles --check",
  12. "lint": "eslint --ext .js lib test",
  13. "test": "npm run lint && npm run test-local",
  14. "test-local": "egg-bin test",
  15. "cov": "egg-bin cov",
  16. "ci": "npm run autod -- --check && npm run lint && npm run cov"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/node-modules/serialize-json.git"
  21. },
  22. "keywords": [
  23. "json",
  24. "serialization"
  25. ],
  26. "author": "gxcsoccer@126.com",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/node-modules/serialize-json/issues"
  30. },
  31. "homepage": "https://github.com/node-modules/serialize-json#readme",
  32. "dependencies": {
  33. "debug": "^3.2.6",
  34. "is-type-of": "^1.2.1",
  35. "utility": "^1.15.0"
  36. },
  37. "devDependencies": {
  38. "autod": "^3.0.1",
  39. "beautify-benchmark": "^0.2.4",
  40. "benchmark": "^2.1.4",
  41. "egg-bin": "^1.11.1",
  42. "egg-ci": "^1.10.0",
  43. "eslint": "^4.19.1",
  44. "eslint-config-egg": "^6.0.0",
  45. "mm": "^2.4.1"
  46. },
  47. "engines": {
  48. "node": ">= 4.0.0"
  49. },
  50. "ci": {
  51. "version": "4, 6, 8, 10, 11"
  52. }
  53. }