UNPKG

737 BJSONView Raw
1{
2 "name": "jsonc-parser",
3 "version": "0.3.1",
4 "description": "Scanner and parser for JSON with comments.",
5 "main": "./lib/main.js",
6 "typings": "./lib/main",
7 "author": "Microsoft Corporation",
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/Microsoft/node-jsonc-parser"
11 },
12 "license": "MIT",
13 "bugs": {
14 "url": "https://github.com/Microsoft/node-jsonc-parser/issues"
15 },
16 "devDependencies": {
17 "mocha": "^2.4.5",
18 "typescript": "^2.1.5",
19 "@types/node": "^6.0.46",
20 "@types/mocha": "^2.2.32"
21 },
22 "dependencies": {
23 "vscode-nls": "^2.0.2"
24 },
25 "scripts": {
26 "prepublish": "tsc -p ./src",
27 "compile": "tsc -p ./src",
28 "watch": "tsc -w -p ./src",
29 "test": "tsc -p ./src && mocha"
30 }
31}