-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.71 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
{
"name": "@rasphilco/leif",
"description": "multi-repo syncronization & management tool",
"version": "0.12.0",
"author": "RasPhilCo @RasPhilCo",
"bin": {
"leif": "./bin/run"
},
"bugs": "https://github.com/RasPhilCo/leif/issues",
"dependencies": {
"@oclif/core": "^1.0.0",
"@octokit/rest": "^19.0.4",
"cli-ux": "^6.0.8",
"fast-glob": "^3.2.5",
"fs-extra": "^10.0.0",
"js-yaml": "^4.0.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^2",
"@types/chai": "^4",
"@types/fs-extra": "^9.0.6",
"@types/js-yaml": "^4.0.0",
"@types/mocha": "^9",
"@types/node": "^18",
"chai": "^4",
"eslint": "^7.19.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.2.0",
"globby": "^11",
"install": "^0.13.0",
"mocha": "^10",
"nyc": "^15",
"oclif": "^3.1.2",
"ts-node": "^10",
"typescript": "4.6.3"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/RasPhilCo/leif",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "leif",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "RasPhilCo/leif",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib tsconfig.tsbuildinfo && tsc -b --force && oclif manifest && oclif readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"types": "lib/index.d.ts"
}