-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "gtm-tools",
"version": "0.1.0-alpha.1",
"engines": {
"npm": ">=9.5.0",
"node": ">=18.0.0"
},
"type": "module",
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@types/cli-table": "^0.3.1",
"@types/diff": "^5.0.3",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.0.0",
"gts": "^4.0.1",
"husky": "^8.0.3",
"ts-node": "^10.9.1",
"typescript": "~4.9.0"
},
"peerDependencies": {
"gaxios": "^4.0.0"
},
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc && node scripts/shebangify.js ./dist/index.js && chmod a+x ./dist/index.js",
"fix": "gts fix",
"prepare": "husky install",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cli-table": "^0.3.11",
"colors": "^1.4.0",
"commander": "^10.0.0",
"diff": "^5.1.0",
"googleapis": "^113.0.0",
"inquirer": "^9.1.5",
"reflect-metadata": "^0.1.13",
"yaml": "^2.3.1"
},
"main": "./dist/index.js",
"bin": {
"gtm-tools": "./dist/index.js"
}
}