basant307/AI_Governance_Project
048
1{2 "name": "comment-json",3 "version": "4.2.5",4 "description": "Parse and stringify JSON with comments. It will retain comments even after saved!",5 "main": "src/index.js",6 "types": "index.d.ts",7 "scripts": {8 "test": "npm run test:only",9 "test:only": "npm run test:ts && npm run test:node",10 "test:ts": "tsc -b test/ts/tsconfig.build.json && node test/ts/test-ts.js",11 "test:node": "NODE_DEBUG=comment-json nyc ava --timeout=10s --verbose",12 "test:dev": "npm run test:only && npm run report:dev",13 "lint": "eslint .",14 "fix": "eslint . --fix",15 "posttest": "npm run report",16 "report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",17 "report:dev": "nyc report --reporter=html && npm run report:open",18 "report:open": "open coverage/index.html"19 },20 "files": [21 "src/",22 "index.d.ts"23 ],24 "repository": {25 "type": "git",26 "url": "git://github.com/kaelzhang/node-comment-json.git"27 },28 "keywords": [29 "comment-json",30 "comments",31 "annotations",32 "json",33 "json-stringify",34 "json-parse",35 "parser",36 "comments-json",37 "json-comments"38 ],39 "engines": {40 "node": ">= 6"41 },42 "ava": {43 "files": [44 "test/*.test.js"45 ]46 },47 "author": "kaelzhang",48 "license": "MIT",49 "bugs": {50 "url": "https://github.com/kaelzhang/node-comment-json/issues"51 },52 "devDependencies": {53 "@ostai/eslint-config": "^3.6.0",54 "ava": "^4.0.1",55 "codecov": "^3.8.2",56 "eslint": "^8.8.0",57 "eslint-plugin-import": "^2.25.4",58 "nyc": "^15.1.0",59 "test-fixture": "^2.4.1",60 "typescript": "^4.5.5"61 },62 "dependencies": {63 "array-timsort": "^1.0.3",64 "core-util-is": "^1.0.3",65 "esprima": "^4.0.1",66 "has-own-prop": "^2.0.0",67 "repeat-string": "^1.6.1"68 }69}70 