This repository was archived by the owner on Aug 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
{
"name": "@oclif/errors",
"description": "display friendly CLI errors and log to error log",
"version": "1.3.6",
"author": "Salesforce",
"bugs": "https://github.com/oclif/errors/issues",
"dependencies": {
"clean-stack": "^3.0.0",
"fs-extra": "^8.1",
"indent-string": "^4.0.0",
"strip-ansi": "^6.0.1",
"wrap-ansi": "^7.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/clean-stack": "^2.1.1",
"@types/fs-extra": "^9.0",
"@types/indent-string": "^4.0.1",
"@types/mocha": "^8.2.3",
"@types/node": "^14.18.32",
"@types/strip-ansi": "^5.2.1",
"@types/wrap-ansi": "^3.0.0",
"chai": "^4.3.6",
"chalk": "^4.1.0",
"eslint": "^7.3.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.2.0",
"fancy-test": "^1.4.8",
"mocha": "^8.2.1",
"nock": "^13.2.4",
"ts-node": "^9.1.1",
"typescript": "~3.9.10"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/handle.js",
"/lib"
],
"homepage": "https://github.com/oclif/errors",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"repository": "oclif/errors",
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "eslint . --ext .ts --config .eslintrc",
"posttest": "rm -rf lib && yarn lint",
"prepublishOnly": "yarn run build",
"pretest": "yarn run build && tsc -p test --noEmit",
"test": "mocha --forbid-only \"test/**/*.test.ts\""
},
"types": "lib/index.d.ts"
}