typescript-domain
Version:
Decorator-based transformation of JSON or plain Javascript objects to classes
52 lines (51 loc) • 1.47 kB
JSON
{
"name": "typescript-domain",
"version": "0.2.0",
"description": "Decorator-based transformation of JSON or plain Javascript objects to classes",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint src test",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"test": "jest --config jestconfig.json",
"test:watch": "jest --config jestconfig.json --silent=false --watchAll",
"version": "npm run format && git add -A src"
},
"repository": {
"type": "git",
"url": "git@github.com:BSantos22/typescript-domain.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"typescript",
"domain",
"object-to-class"
],
"author": "Bruno Santos",
"license": "MIT",
"files": [
"lib/src/**/*"
],
"devDependencies": {
"@types/jest": "^29.0.1",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-rxjs": "^5.0.2",
"jest": "^29.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.0.0",
"typescript": "^4.8.3"
}
}