Advertisement
Guest User

Untitled

a guest
May 11th, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. {
  2. "name": "json5",
  3. "version": "0.4.0",
  4. "description": "JSON for the ES5 era.",
  5. "keywords": ["json", "es5"],
  6. "author": "Aseem Kishore <aseem.kishore@gmail.com>",
  7. "contributors": [
  8. "Max Nanasy <max.nanasy@gmail.com>",
  9. "Andrew Eisenberg <andrew@eisenberg.as>",
  10. "Jordan Tucker <jordanbtucker@gmail.com>"
  11. ],
  12. "main": "lib/json5.js",
  13. "bin": "lib/cli.js",
  14. "dependencies": {},
  15. "devDependencies": {
  16. "mocha": "~1.0.3"
  17. },
  18. "scripts": {
  19. "build": "./lib/cli.js -c package.json5",
  20. "test": "mocha --ui exports --reporter spec"
  21. },
  22. "homepage": "http://json5.org/",
  23. "license": "MIT",
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/aseemk/json5.git",
  27. },
  28. }
  29.  
  30.  
  31.  
  32.  
  33. {
  34. name: 'json5',
  35. version: '0.4.0',
  36. description: 'JSON for the ES5 era.',
  37. keywords: ['json', 'es5'],
  38. author: 'Aseem Kishore <aseem.kishore@gmail.com>',
  39. contributors: [
  40. // TODO: Should we remove this section in favor of GitHub's list?
  41. // https://github.com/aseemk/json5/contributors
  42. 'Max Nanasy <max.nanasy@gmail.com>',
  43. 'Andrew Eisenberg <andrew@eisenberg.as>',
  44. 'Jordan Tucker <jordanbtucker@gmail.com>',
  45. ],
  46. main: 'lib/json5.js',
  47. bin: 'lib/cli.js',
  48. dependencies: {},
  49. devDependencies: {
  50. mocha: '~1.0.3', // TODO: Look into Mocha v2.
  51. },
  52. scripts: {
  53. build: './lib/cli.js -c package.json5',
  54. test: 'mocha --ui exports --reporter spec',
  55. // TODO: Would it be better to define these in a mocha.opts file?
  56. },
  57. homepage: 'http://json5.org/',
  58. license: 'MIT',
  59. repository: {
  60. type: 'git',
  61. url: 'https://github.com/aseemk/json5.git',
  62. },
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement