add dev and tests
Showing
dev/index.ts
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
... | ... | @@ -6,7 +6,9 @@ |
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"lint": "eslint --fix .", | ||
"build": "webpack && env PACK_ALL=1 webpack" | ||
"build": "webpack && env PACK_ALL=1 webpack", | ||
"start": "ts-node ./dev", | ||
"test": "jest --passWithNoTests" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
... | ... | @@ -30,21 +32,43 @@ |
"source-map-support": "^0.5.21" | ||
}, | ||
"peerDependencies": { | ||
"koishi": "^4.2.1" | ||
"koishi": "^4.2.2" | ||
}, | ||
"devDependencies": { | ||
"@koishijs/plugin-console": "^3.1.1", | ||
"@koishijs/plugin-sandbox": "^1.0.0", | ||
"@types/jest": "^27.4.0", | ||
"@types/node": "^17.0.18", | ||
"@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.5.1", | ||
"prettier": "^2.5.1", | ||
"raw-loader": "^4.0.2", | ||
"ts-jest": "^27.1.3", | ||
"ts-loader": "^9.2.6", | ||
"typescript": "^4.5.5", | ||
"webpack": "^5.69.1", | ||
"webpack-cli": "^4.9.2", | ||
"ws": "^8.5.0" | ||
}, | ||
"jest": { | ||
"moduleFileExtensions": [ | ||
"js", | ||
"json", | ||
"ts" | ||
], | ||
"rootDir": "tests", | ||
"testRegex": ".*\\.spec\\.ts$", | ||
"transform": { | ||
"^.+\\.(t|j)s$": "ts-jest" | ||
}, | ||
"collectCoverageFrom": [ | ||
"**/*.(t|j)s" | ||
], | ||
"coverageDirectory": "../coverage", | ||
"testEnvironment": "node" | ||
} | ||
} |
tests/sample.spec.ts
0 → 100644
Please register or sign in to comment