-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "coscribe",
"version": "1.0.0",
"keywords": [
"git",
"CODEOWNERS",
"shelljs"
],
"description": "Git code owners file generator and updater",
"main": "./dist/index.js",
"author": "Omar Ziranhua <[email protected]>",
"homepage": "https://github.com/omizzy/coscribe",
"repository": "https://github.com/omizzy/coscribe",
"bugs": {
"url": "https://github.com/omizzy/coscribe/issues"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "npx tsc"
},
"files": [
"dist/*"
],
"bin": {
"coscribe": "./dist/index.js"
},
"license": "MIT",
"dependencies": {
"@types/cli-progress": "^3.11.0",
"@types/node": "^17.0.21",
"ansi-colors": "^4.1.3",
"cli-progress": "^3.12.0",
"commander": "^10.0.1",
"ignore": "^5.2.4",
"shelljs": "^0.8.5",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.0",
"typescript": "^5.1.3",
"yaml": "^2.3.1"
},
"devDependencies": {
"@types/shelljs": "^0.8.12",
"rimraf": "^5.0.1"
}
}