UNPKG

1.16 kBJSONView Raw
1{
2 "name": "jsonc-parser",
3 "version": "2.2.1",
4 "description": "Scanner and parser for JSON with comments.",
5 "main": "./lib/umd/main.js",
6 "typings": "./lib/umd/main",
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": "^6.2.2",
19 "typescript": "^3.6.4",
20 "@types/node": "^10.12.12",
21 "@types/mocha": "^5.2.7",
22 "tslint": "^5.20.0",
23 "rimraf": "^3.0.0"
24 },
25 "scripts": {
26 "prepublishOnly": "npm run clean && npm run compile-esm && npm run test && npm run remove-sourcemap-refs",
27 "postpublish": "node ./build/post-publish.js",
28 "compile": "tsc -p ./src",
29 "compile-esm": "tsc -p ./src/tsconfig.esm.json",
30 "remove-sourcemap-refs": "node ./build/remove-sourcemap-refs.js",
31 "clean": "rimraf lib",
32 "watch": "tsc -w -p ./src",
33 "test": "npm run compile && mocha",
34 "preversion": "npm test",
35 "postversion": "git push && git push --tags"
36 }
37}