jsonc-parser
Version:
Scanner and parser for JSON with comments.
32 lines (31 loc) • 804 B
JSON
{
"name": "jsonc-parser",
"version": "1.0.2",
"description": "Scanner and parser for JSON with comments.",
"main": "./lib/main.js",
"typings": "./lib/main",
"author": "Microsoft Corporation",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/node-jsonc-parser"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/node-jsonc-parser/issues"
},
"devDependencies": {
"mocha": "^2.4.5",
"typescript": "^2.7.2",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.32",
"tslint": "^5.9.1"
},
"scripts": {
"prepare": "tsc -p ./src",
"compile": "tsc -p ./src",
"watch": "tsc -w -p ./src",
"test": "tsc -p ./src && mocha",
"preversion": "npm test",
"postversion": "git push && git push --tags"
}
}