-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "@rickyli79/chain-handler",
"version": "1.0.1",
"publishConfig": {
"access": "public"
},
"repository": {
"url": "https://github.com/RickyLi79/chain-handler/"
},
"description": "chain handler, Strategy Pattern, Chain of Responsibility Pattern, Middleware Pattern",
"keywords": ["chain handler", "Strategy Pattern", "Chain of Responsibility Pattern", "Middleware Pattern"],
"main": "bin/index.js",
"scripts": {
"test": "mocha -r ts-node/register --reporter spec --no-timeouts --colors test/**/*.test.ts",
"test-report": "mocha -r ts-node/register --reporter mochawesome --reporter-options reportDir=docs,reportTitle=chain-handler,reportPageTitle=chain-handler-report,reportFilename=index,autoOpen=true --no-timeouts --colors test/**/*.test.ts",
"build": "tsc -p tsconfig/tsconfig.build.json"
},
"author": {
"email": "382688672@qq.com",
"name": "RickyLi79",
"url": "https://github.com/RickyLi79"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "4.3.12",
"@types/mocha": "10.0.6",
"@types/node": "~16.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"chai": "4.3.9",
"eslint-config-egg": "^13.1.0",
"mocha": "10.3.0",
"mochawesome": "^7.1.3",
"ts-node": "^10.9.2",
"type-fest": "4.10.3",
"typescript": "^5.3.3"
},
"dependencies": {
},
"files": [
"bin"
]
}