finish
Showing
.dockerignore
0 → 100644
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
.npmignore
0 → 100644
.prettierrc
0 → 100644
Dockerfile
0 → 100644
LICENSE
0 → 100644
index.ts
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | |||
"name": "koishi-decorators", | |||
"description": "Decorator defs for thirdeye and nestjs.", | |||
"version": "1.0.0", | |||
"main": "dist/index.js", | |||
"types": "dist/index.d.ts", | |||
"scripts": { | |||
"lint": "eslint --fix .", | |||
"build": "rimraf dist && tsc", | |||
"test": "jest --passWithNoTests", | |||
"start": "node dist/index.js" | |||
}, | |||
"repository": { | |||
"type": "git", | |||
"url": "https://code.mycard.moe/3rdeye/koishi-decorators.git" | |||
}, | |||
"author": "Nanahira <nanahira@momobako.com>", | |||
"license": "MIT", | |||
"keywords": [], | |||
"bugs": { | |||
"url": "https://code.mycard.moe/3rdeye/koishi-decorators/issues" | |||
}, | |||
"homepage": "https://code.mycard.moe/3rdeye/koishi-decorators", | |||
"jest": { | |||
"moduleFileExtensions": [ | |||
"js", | |||
"json", | |||
"ts" | |||
], | |||
"rootDir": "tests", | |||
"testRegex": ".*\\.spec\\.ts$", | |||
"transform": { | |||
"^.+\\.(t|j)s$": "ts-jest" | |||
}, | |||
"collectCoverageFrom": [ | |||
"**/*.(t|j)s" | |||
], | |||
"coverageDirectory": "../coverage", | |||
"testEnvironment": "node" | |||
}, | |||
"devDependencies": { | |||
"@koishijs/plugin-mock": "^1.0.0", | |||
"@types/jest": "^27.4.0", | |||
"@types/lodash": "^4.14.178", | |||
"@types/node": "^17.0.10", | |||
"@typescript-eslint/eslint-plugin": "^4.33.0", | |||
"@typescript-eslint/parser": "^4.33.0", | |||
"eslint": "^7.32.0", | |||
"eslint-config-prettier": "^8.3.0", | |||
"eslint-plugin-prettier": "^3.4.1", | |||
"jest": "^27.4.7", | |||
"koishi": "^4.1.0", | |||
"prettier": "^2.5.1", | |||
"rimraf": "^3.0.2", | |||
"ts-jest": "^27.1.3", | |||
"typescript": "^4.5.5" | |||
}, | |||
"peerDependencies": { | |||
"koishi": "^4.1.0" | |||
}, | |||
"dependencies": { | |||
"@types/koa": "^2.13.4", | |||
"@types/koa__router": "^8.0.11", | |||
"lodash": "^4.17.21", | |||
"reflect-metadata": "^0.1.13", | |||
"typed-reflector": "^1.0.9" | |||
} | |||
} |
tests/register.spec.ts
0 → 100644
tests/scope.spec.ts
0 → 100644
tsconfig.json
0 → 100644
Please register or sign in to comment