bio-dts
Version:
Generate sane and clean types from JavaScript sources
47 lines (46 loc) • 1.11 kB
JSON
{
"name": "bio-dts",
"version": "0.12.0",
"description": "Generate sane and clean types from JavaScript sources",
"type": "module",
"bin": "bin/cmd.js",
"exports": {
".": "./index.js",
"./lib/*.js": "./lib/*.js",
"./package.json": "./package.json"
},
"scripts": {
"all": "run-s lint check-types test test:dts",
"lint": "eslint .",
"check-types": "tsc --noEmit",
"test": "mocha test",
"test:dts": "node bin/cmd.js --outDir test/fixtures/snapshots -r test/fixtures"
},
"repository": {
"type": "git",
"url": "https://github.com/nikku/bio-dts"
},
"author": "Nico Rehwaldt",
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.26.3",
"recast": "^0.23.9",
"tiny-glob": "^0.2.9"
},
"devDependencies": {
"@babel/types": "^7.23.9",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.12",
"chai": "^5.1.2",
"eslint": "^8.56.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"mocha": "^10.8.2",
"npm-run-all2": "^7.0.2",
"typescript": "^5.7.3"
},
"files": [
"bin",
"lib",
"index.js"
]
}