package.json 966 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "json5",
  3. "version": "0.5.1",
  4. "description": "JSON for the ES5 era.",
  5. "keywords": [
  6. "json",
  7. "es5"
  8. ],
  9. "author": "Aseem Kishore <aseem.kishore@gmail.com>",
  10. "contributors": [
  11. "Max Nanasy <max.nanasy@gmail.com>",
  12. "Andrew Eisenberg <andrew@eisenberg.as>",
  13. "Jordan Tucker <jordanbtucker@gmail.com>"
  14. ],
  15. "main": "lib/json5.js",
  16. "bin": "lib/cli.js",
  17. "files": [
  18. "lib/"
  19. ],
  20. "dependencies": {},
  21. "devDependencies": {
  22. "gulp": "^3.9.1",
  23. "gulp-jshint": "^2.0.1",
  24. "jshint": "^2.9.3",
  25. "jshint-stylish": "^2.2.1",
  26. "mocha": "^3.1.0"
  27. },
  28. "scripts": {
  29. "build": "node ./lib/cli.js -c package.json5",
  30. "test": "mocha --ui exports --reporter spec"
  31. },
  32. "homepage": "http://json5.org/",
  33. "license": "MIT",
  34. "repository": {
  35. "type": "git",
  36. "url": "https://github.com/aseemk/json5.git"
  37. }
  38. }