-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.94 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
{
"name": "vstool",
"version": "1.0.0",
"author": "Matthew Bystedt <matthew.bystedt@gov.bc.ca>",
"description": "Vault sync tool for IIT",
"keywords": [
"oclif"
],
"exports": "./lib/index.js",
"types": "dist/index.d.ts",
"bin": {
"vstool": "./bin/run"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint \"src/**/*.ts\"",
"prepack": "npm run build && oclif manifest && oclif readme",
"postpack": "shx rm -f oclif.manifest.json",
"test": "jest --config=jest.config.cjs",
"posttest": "npm run lint",
"e2e": "jest --config=jest.e2e.config.cjs",
"start": "ts-node src/index.ts",
"version": "oclif-dev readme && git add README.md"
},
"oclif": {
"bin": "vstool",
"commands": "./dist/commands",
"dirname": "vstool",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
]
},
"dependencies": {
"@oclif/core": "^4.0.31",
"@oclif/plugin-help": "^6.2.16",
"@oclif/plugin-plugins": "^5.4.15",
"axios": "^1.7.7",
"ejs": "^3.1.10",
"inversify": "^6.0.3",
"merge-deep": "^3.0.3",
"node-vault": "^0.10.2",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"winston": "^3.16.0"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/jest": "^29.5.14",
"@types/merge-deep": "^3.0.3",
"@types/node": "^22.9.0",
"@types/request": "^2.48.12",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"oclif": "^4.15.20",
"rimraf": "^3.0.2",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"engines": {
"node": ">=18.0.0"
}
}