Files
zkldi_Tachi/common/package.json
T

45 lines
832 B
JSON

{
"name": "tachi-common",
"version": "0.15.2",
"description": "Common Types & Utilities for Tachi",
"main": "js/index.js",
"files": [
"js/**/*"
],
"scripts": {
"test": "tap",
"build": "tsc",
"prepublish": "tsc",
"lint": "eslint . --ext .ts --fix"
},
"author": "zkldi",
"license": "MIT",
"devDependencies": {
"@types/node": "17.0.8",
"@types/tap": "15.0.3",
"eslint": "8",
"eslint-plugin-cadence": "0.0.3",
"tap": "15.0.9",
"ts-node": "10.0.0",
"typescript": "4.6.3"
},
"dependencies": {
"@types/express-serve-static-core": "^4.17.28",
"@types/mongodb": "3.6.18",
"prudence": "^0.9.8"
},
"nyc": {
"reporter": [
"html",
"lcov"
],
"all": true,
"include": [
"src/*/!(test-utils)/**/*.ts"
],
"exclude": [
"src/**/*.test.ts",
"src/external/mongo/schemas.ts"
]
}
}