| 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 |
{ |
| 5 |
name: 'json5', |
| 6 |
version: '0.5.0', |
| 7 |
description: 'JSON for the ES5 era.', |
| 8 |
keywords: ['json', 'es5'], |
| 9 |
author: 'Aseem Kishore <aseem.kishore@gmail.com>', |
| 10 |
contributors: [ |
| 11 |
// TODO: Should we remove this section in favor of GitHub's list? |
| 12 |
// https://github.com/aseemk/json5/contributors |
| 13 |
'Max Nanasy <max.nanasy@gmail.com>', |
| 14 |
'Andrew Eisenberg <andrew@eisenberg.as>', |
| 15 |
'Jordan Tucker <jordanbtucker@gmail.com>', |
| 16 |
], |
| 17 |
main: 'lib/json5.js', |
| 18 |
bin: 'lib/cli.js', |
| 19 |
files: ["lib/"], |
| 20 |
dependencies: {}, |
| 21 |
devDependencies: { |
| 22 |
gulp: "^3.9.1", |
| 23 |
'gulp-jshint': "^2.0.0", |
| 24 |
jshint: "^2.9.1", |
| 25 |
'jshint-stylish': "^2.1.0", |
| 26 |
mocha: "^2.4.5" |
| 27 |
}, |
| 28 |
scripts: { |
| 29 |
build: 'node ./lib/cli.js -c package.json5', |
| 30 |
test: 'mocha --ui exports --reporter spec', |
| 31 |
// TODO: Would it be better to define these in a mocha.opts file? |
| 32 |
}, |
| 33 |
homepage: 'http://json5.org/', |
| 34 |
license: 'MIT', |
| 35 |
repository: { |
| 36 |
type: 'git', |
| 37 |
url: 'https://github.com/aseemk/json5.git', |
| 38 |
}, |
| 39 |
} |
| 40 |
|
| 41 |
https://github.com/mrmlnc/vscode-json5/blob/master/syntaxes/json5.json |