-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 723 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 723 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
{
"name": "head-first-design-patterns-Typescript",
"version": "0.1.0",
"description": "Typescript implementation of patterns described in Head First Design Patterns.",
"scripts": {
"examples": "ts-node index.ts",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"author": "chuck.danielsson@gmail.com",
"license": "MIT",
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/node": "^14.11.2",
"gts": "^3.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.0.3"
},
"keywords": [],
"dependencies": {
"commander": "^8.0.1"
}
}