-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.24 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
43
44
45
46
47
48
49
50
{
"name": "create-typescript-project",
"version": "0.8.0",
"description": "create simple, opiniated typescript projects",
"bin": {
"create-typescript-project": "build/index.js",
"create-typescript-project-hello-world": "build/script-hello-world.js"
},
"scripts": {
"prepare": "husky install && npm run build",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/claasahl/create-typescript-project.git"
},
"keywords": [
"typescript",
"init",
"ts",
"bootstrap",
"generate"
],
"author": {
"name": "Claas Ahlrichs",
"email": "[email protected]",
"url": "https://github.com/claasahl"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/claasahl/create-typescript-project/issues"
},
"homepage": "https://github.com/claasahl/create-typescript-project#readme",
"devDependencies": {
"@types/jsonfile": "^6.0.0",
"@types/node-fetch": "^2.5.8",
"husky": "^5.1.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"dependencies": {
"@types/node": "^14.14.35",
"chalk": "^4.1.0",
"execa": "^5.0.0",
"isomorphic-git": "^1.8.1",
"jsonfile": "^6.1.0",
"node-fetch": "^2.6.1",
"typescript": "^4.2.3"
}
}