package.json5 849 B

12345678910111213141516171819202122232425262728293031
  1. // This file is written in JSON5 syntax, naturally, but npm needs a regular
  2. // JSON file, so compile via `npm run build`. Be sure to keep both in sync!
  3. {
  4. name: 'json5',
  5. version: '0.4.0',
  6. description: 'JSON for the ES5 era.',
  7. keywords: ['json', 'es5'],
  8. author: 'Aseem Kishore <aseem.kishore@gmail.com>',
  9. license: 'MIT',
  10. contributors: [
  11. 'Max Nanasy <max.nanasy@gmail.com>',
  12. 'Andrew Eisenberg <andrew@eisenberg.as>',
  13. ],
  14. main: 'lib/json5.js',
  15. bin: 'lib/cli.js',
  16. dependencies: {},
  17. devDependencies: {
  18. mocha: '~1.0.3',
  19. },
  20. scripts: {
  21. build: './lib/cli.js -c package.json5',
  22. test: 'mocha --ui exports --reporter spec',
  23. },
  24. homepage: 'http://json5.org/',
  25. repository: {
  26. type: 'git',
  27. url: 'https://github.com/aseemk/json5.git',
  28. },
  29. }