-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "@handy-common-utils/oclif-utils",
"version": "3.0.0",
"description": "oclif related utilities",
"scripts": {
"pretest": "eslint . --ext .ts",
"test": "nyc mocha",
"prepare": "shx rm -rf dist && tsc && es-check",
"preversion": "generate-api-docs-and-update-readme && git add README.md"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {},
"dependencies": {
"@handy-common-utils/fs-utils": ">=1.1.1",
"@handy-common-utils/promise-utils": ">=1.5.0"
},
"peerDependencies": {
"@oclif/core": ">=2 <5"
},
"devDependencies": {
"@handy-common-utils/dev-dependencies-mocha": "^1.5.4",
"@oclif/test": "^4.0.4",
"oclif": "^4.13.7",
"zx": "^4.3.0"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/handy-common-utils/oclif-utils#readme",
"repository": {
"type": "git",
"url": "https://github.com/handy-common-utils/oclif-utils.git"
},
"bugs": {
"url": "https://github.com/handy-common-utils/oclif-utils/issues"
},
"keywords": [
"oclif",
"utils",
"utilities"
],
"author": "James Hu",
"license": "Apache-2.0",
"volta": {
"node": "18.16.0",
"npm": "9.5.1"
}
}