ts-rtcheck
Version:
A Typescript runtime checker
35 lines (34 loc) • 760 B
JSON
{
"name": "ts-rtcheck",
"version": "1.0.21",
"main": "dist/index.js",
"module": "dist-esm/index.js",
"typings": "dist/index.d.ts",
"author": "'JW9506' <'cf.dota@gmail.com'>",
"license": "MIT",
"files": [
"dist",
"dist-esm"
],
"repository": {
"type": "git",
"url": "https://github.com/JW9506/ts-rtcheck"
},
"peerDependencies": {
"typescript": "^4.0.0"
},
"scripts": {
"build": "rm -rf dist/ dist-esm/ && tsc -p ./tsconfig.json && tsc -p ./tsconfig.esm.json",
"test": "tsc -p ./test/tsconfig.json && ts-node test/test.ts"
},
"keywords": [
"typesctipt",
"runtime",
"assert"
],
"devDependencies": {
"@types/assert": "^1.5.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}