UNPKG

cerializr

Version:

(de)serialization made easy with ES7/Typescript annotations (decorators)

63 lines (62 loc) 1.4 kB
{ "name": "cerializr", "description": "(de)serialization made easy with ES7/Typescript annotations (decorators)", "keywords": [ "serialize", "typescript", "es7", "annotations", "decoration", "decorators" ], "author": "Kevin MATHY", "license": "MIT", "repository": "https://github.com/kmathy/cerializr", "version": "3.1.4", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "prepublishOnly": "npm run build", "build": "gulp", "publish-npm": "np --no-yarn", "test": "jest", "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand" }, "typings": "dist/index.d.ts", "devDependencies": { "@types/jest": "^24.0.23", "@types/lodash": "^4.14.149", "gulp": "^4.0.2", "gulp-clean": "^0.4.0", "gulp-concat": "^2.6.1", "gulp-sourcemaps": "^2.6.5", "gulp-terser": "^1.2.0", "gulp-typescript": "^6.0.0-alpha.1", "jest": "^24.9.0", "merge2": "^1.3.0", "ts-jest": "^24.2.0", "ts-loader": "^6.2.1", "typescript": "^3.7.2" }, "jest": { "testRegex": "./spec/.*\\.spec\\.([tj]sx?)$", "transform": { "^.+\\.[jt]sx?$": "ts-jest" }, "moduleFileExtensions": [ "ts", "tsx", "js", "jsx" ], "globals": { "ts-jest": { "tsConfig": "./spec/tsconfig.json" } } }, "dependencies": { "lodash": "^4.17.15", "tslib": "^1.9.0" } }