PluginProbe
Code Block Pro – Beautiful Syntax Highlighting / 1.13.0
Code Block Pro – Beautiful Syntax Highlighting v1.13.0
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 / node_modules / jsonc-parser / package.json

package.json in Code Block Pro – Beautiful Syntax Highlighting 1.13.0, at build/shiki/node_modules/jsonc-parser/package.json

41 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "name": "jsonc-parser",
3 "version": "3.2.0",
4 "description": "Scanner and parser for JSON with comments.",
5 "main": "./lib/umd/main.js",
6 "typings": "./lib/umd/main.d.ts",
7 "module": "./lib/esm/main.js",
8 "author": "Microsoft Corporation",
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/microsoft/node-jsonc-parser"
12 },
13 "license": "MIT",
14 "bugs": {
15 "url": "https://github.com/microsoft/node-jsonc-parser/issues"
16 },
17 "devDependencies": {
18 "mocha": "^10.0.0",
19 "typescript": "^4.8.2",
20 "@types/node": "^16.x",
21 "@types/mocha": "^9.1.1",
22 "@typescript-eslint/eslint-plugin": "^5.36.0",
23 "@typescript-eslint/parser": "^5.36.0",
24 "eslint": "^8.23.0",
25 "rimraf": "^3.0.2"
26 },
27 "scripts": {
28 "prepublishOnly": "npm run clean && npm run compile-esm && npm run test && npm run remove-sourcemap-refs",
29 "postpublish": "node ./build/post-publish.js",
30 "compile": "tsc -p ./src && npm run lint",
31 "compile-esm": "tsc -p ./src/tsconfig.esm.json",
32 "remove-sourcemap-refs": "node ./build/remove-sourcemap-refs.js",
33 "clean": "rimraf lib",
34 "watch": "tsc -w -p ./src",
35 "test": "npm run compile && mocha ./lib/umd/test",
36 "lint": "eslint src/**/*.ts",
37 "preversion": "npm test",
38 "postversion": "git push && git push --tags"
39 }
40 }
41