PluginProbe
Code Block Pro – Beautiful Syntax Highlighting / 1.27.4
Code Block Pro – Beautiful Syntax Highlighting v1.27.4
1.27.1 1.27.2 1.27.3 1.27.4 1.27.5 1.27.6 1.27.7 1.28.0 1.3.0 1.4.0 1.5.0 1.5.1 1.5.2 1.6.0 1.7.0 1.8.0 1.9.0 1.9.1 1.9.2 1.9.3 trunk 1.1.0 1.10.0 1.11.0 1.11.1 All 63 releases
code-block-pro / build / shiki / samples / json5.sample

json5.sample in Code Block Pro – Beautiful Syntax Highlighting 1.27.4, at build/shiki/samples/json5.sample

42 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 // From https://github.com/mrmlnc/vscode-json5/blob/master/syntaxes/json5.json
42