-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.75 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.75 KB
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
51
52
53
54
55
56
57
58
{
"name": "sipgateio-google-deployer",
"version": "1.0.0",
"description": "a CLI tool based on the GCloud CLI to allow for quick deployment of sipgate.io examples to the Google Cloud",
"main": "src/main.ts",
"scripts": {
"start": "ts-node .",
"fix:lint": "eslint src --ext .ts,.js --fix",
"test:lint": "eslint src --ext .ts,.js",
"test:format": "prettier --check .",
"fix:format": "prettier --write .",
"prepare": "husky install",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sipgate-io/sipgateio-google-deployer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sipgate-io/sipgateio-google-deployer/issues"
},
"homepage": "https://github.com/sipgate-io/sipgateio-google-deployer#readme",
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/inquirer": "^8.0.0",
"@types/inquirer-autocomplete-prompt": "^2.0.0",
"@types/jest": "^29.2.4",
"@types/node": "^18.0.3",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jest": "^28.1.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.{ts,js}": "eslint --fix",
"*.{ts,js,css,md}": "prettier --write"
},
"dependencies": {
"commander": "^10.0.0",
"inquirer": "^8.0.0",
"inquirer-autocomplete-prompt": "^2.0.0",
"node-fetch": "^2.6.8",
"sipgateio": "^2.14.0",
"ts-node": "^10.8.2",
"yaml": "^2.2.2"
}
}