-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.98 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "chs-dev",
"version": "2.0.0",
"author": "Companies House",
"bin": {
"chs-dev": "./bin/run.js"
},
"bugs": "https://github.com/companieshouse/chs-dev/issues",
"dependencies": {
"@inquirer/confirm": "^3.1.8",
"@inquirer/prompts": "^7.0.0",
"@oclif/config": "^1.15.1",
"@oclif/core": "^3",
"@oclif/plugin-autocomplete": "^3.1",
"@oclif/plugin-help": "^6.2",
"@oclif/plugin-plugins": "^5",
"@types/semver": "^7.3.1",
"ansis": "^3.3.2",
"glob": "^7.1.6",
"semver": "^7.3.2",
"simple-git": "^3.22.0",
"supports-hyperlinks": "^3.1.0",
"tslib": "^2",
"yaml": "^1.10.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@oclif/dev-cli": "^1.26",
"@tsconfig/node20": "^20.1.4",
"@types/chai": "^4.2.11",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^5.2.7",
"@types/node": "^22.4.1",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-standard": "^5.0.0",
"globby": "^10.0.2",
"jest": "^29.7.0",
"mocha": "^10.3.0",
"nyc": "^14.1.1",
"oclif": "^4.11.3",
"ts-jest": "^29.1.4",
"ts-jest-resolver": "^2.0.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9",
"typescript": "^5.3"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.2"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/companieshouse/chs-dev",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": {
"strategy": "explicit",
"target": "./lib/commands/index.js",
"identifier": "commands"
},
"hooks": {
"init": "./lib/hooks/init.js",
"ensure-ecr-logged-in": "./lib/hooks/ensure-ecr-logged-in.js",
"generate-runnable-docker-compose": "./lib/hooks/generate-runnable-docker-compose.js",
"generate-development-docker-compose": "./lib/hooks/generate-development-docker-compose.js",
"check-service-or-module-state": "./lib/hooks/check-service-or-module-state.js",
"validate-project-state": "./lib/hooks/validate-project-state.js"
},
"bin": "chs-dev",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete"
],
"topicSeparator": " ",
"topics": {
"development": {
"description": "manages the services currently in development mode"
},
"exclusions": {
"description": "manages the list of services being excluded from docker environment"
},
"modules": {
"description": "manages the addition and removal of modules (collections of common services)"
},
"services": {
"description": "manages the addition and removal of services"
},
"troubleshoot": {
"description": "analyses and outputs state of the system for troubleshooting and support"
}
}
},
"repository": "companieshouse/chs-dev",
"scripts": {
"build": "tsc --build --clean && tsc -b",
"lint": "eslint 'src/*.ts' 'src/**/*.ts' 'test/**/*.ts'",
"lint:fix": "eslint 'src/*.ts' 'src/**/*.ts' 'test/**/*.ts' --fix",
"postpack": "rm -f oclif.manifest.json && rm -rf tmp",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif manifest && oclif readme",
"pack": "oclif pack tarballs --targets 'linux-x64,darwin-arm64,darwin-x64' --parallel --no-xz",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles --runInBand",
"coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --forceExit --passWithNoTests --detectOpenHandles --runInBand"
},
"types": "lib/index.d.ts",
"type": "module",
"chs-dev": {
"version-check-schedule": {
"number-of-days": "4"
}
}
}