-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 839 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 839 Bytes
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
{
"name": "ts-work",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "ts-node src/index.ts",
"test": "mocha",
"test:factory-method": "mocha --fgrep 'Factory Method Test'",
"test:abstract-factory": "mocha --fgrep 'Abstract Factory Test'",
"test:builder": "mocha --fgrep 'Builder Test'",
"test:prototype": "mocha --fgrep 'Prototype Test'",
"test:singleton": "mocha --fgrep 'Singleton Test'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.1",
"@types/sinon": "^17.0.3",
"chai": "^5.1.2",
"mocha": "^11.1.0",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}