UNPKG

json-restructure

Version:

A TypeScript library for repairing malformed JSON strings

64 lines 1.44 kB
{ "name": "json-restructure", "version": "1.0.0", "description": "A TypeScript library for repairing malformed JSON strings", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist/**/*" ], "scripts": { "build": "tsc", "test": "jest --coverage", "prepare": "npm run build", "prepublishOnly": "npm test" }, "repository": { "type": "git", "url": "https://github.com/wickstudio/json-restructure.git" }, "keywords": [ "json", "repair", "fix", "typescript", "json manipulation", "json parsing", "json validation", "malformed json", "json utility", "development", "library", "npm", "node.js", "restructure" ], "author": "Wick Studio <wick@wick-studio.com>", "license": "MIT", "bugs": { "url": "https://github.com/wickstudio/json-restructure/issues" }, "homepage": "https://github.com/wickstudio/json-restructure#readme", "devDependencies": { "@babel/core": "^7.21.0", "@babel/preset-env": "^7.20.2", "@babel/preset-typescript": "^7.21.0", "@types/jest": "^29.5.12", "@types/node": "^18.14.6", "babel-jest": "^29.4.3", "jest": "^29.7.0", "ts-jest": "^29.0.5", "typescript": "^4.9.5" }, "jest": { "transform": { "^.+\\.(ts|tsx)$": "ts-jest" }, "testMatch": [ "**/*.test.ts" ], "collectCoverageFrom": [ "src/**/*.ts" ] } }