json2typescript
Version:
Provides TypeScript methods to map a JSON object to a JavaScript object on runtime
54 lines (53 loc) • 1.34 kB
JSON
{
"name": "json2typescript",
"version": "1.6.1",
"description": "Provides TypeScript methods to map a JSON object to a JavaScript object on runtime",
"keywords": [
"convert",
"json",
"to",
"typescript",
"javascript",
"map",
"mapper",
"mapping",
"json2typescript",
"jsonconvert",
"class",
"object",
"instance"
],
"author": "AppVision GmbH",
"license": "MIT",
"homepage": "https://appvision.ch",
"scripts": {
"test": "karma start karma.conf.js",
"build": "npm i && npm run test && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && npx downlevel-dts . ts3.4 && cp -r ts3.4/* . && rm -r ts3.4",
"dist": "npm run build && npm pack"
},
"typescript": {
"definition": "src/index.d.ts"
},
"dependencies": {},
"devDependencies": {
"@types/jasmine": "^3.8.1",
"downlevel-dts": "^0.7.0",
"jasmine": "3.8.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "4.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^5.5.1",
"phantomjs-prebuilt": "^2.1.16",
"typescript": "4.3.5"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "https://github.com/appvision-gmbh/json2typescript"
}
}