-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
33 lines (33 loc) · 829 Bytes
/
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
{
"name": "typescript-design-patterns",
"version": "1.0.0",
"description": "Design patterns in typescript",
"main": "build/index.js",
"scripts": {
"test": "jest",
"dev": "tsc && node build/strategy/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mateogalic112/typescript-design-patterns.git"
},
"keywords": [
"typescript",
"design-patterns"
],
"author": "Mateo Galić",
"license": "ISC",
"bugs": {
"url": "https://github.com/mateogalic112/typescript-design-patterns/issues"
},
"homepage": "https://github.com/mateogalic112/typescript-design-patterns#readme",
"devDependencies": {
"@types/jest": "^29.5.2",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"dependencies": {
"ts-node": "^10.9.1"
}
}