-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
130 lines (130 loc) · 4.37 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
127
128
129
130
{
"name": "error-cause",
"version": "1.0.8",
"description": "An ES-spec-compliant shim/polyfill/replacement for the `.cause` property on all Error types that works as far down as ES3",
"main": "index.json",
"exports": {
".": "./index.json",
"./auto": "./auto.js",
"./shim": "./shim.js",
"./AggregateError": "./AggregateError/index.js",
"./AggregateError/auto": "./AggregateError/auto.js",
"./AggregateError/polyfill": "./AggregateError/polyfill.js",
"./AggregateError/implementation": "./AggregateError/implementation.js",
"./AggregateError/shim": "./AggregateError/shim.js",
"./Error": "./Error/index.js",
"./Error/auto": "./Error/auto.js",
"./Error/polyfill": "./Error/polyfill.js",
"./Error/implementation": "./Error/implementation.js",
"./Error/shim": "./Error/shim.js",
"./EvalError": "./EvalError/index.js",
"./EvalError/auto": "./EvalError/auto.js",
"./EvalError/polyfill": "./EvalError/polyfill.js",
"./EvalError/implementation": "./EvalError/implementation.js",
"./EvalError/shim": "./EvalError/shim.js",
"./RangeError": "./RangeError/index.js",
"./RangeError/auto": "./RangeError/auto.js",
"./RangeError/polyfill": "./RangeError/polyfill.js",
"./RangeError/implementation": "./RangeError/implementation.js",
"./RangeError/shim": "./RangeError/shim.js",
"./ReferenceError": "./ReferenceError/index.js",
"./ReferenceError/auto": "./ReferenceError/auto.js",
"./ReferenceError/polyfill": "./ReferenceError/polyfill.js",
"./ReferenceError/implementation": "./ReferenceError/implementation.js",
"./ReferenceError/shim": "./ReferenceError/shim.js",
"./SyntaxError": "./SyntaxError/index.js",
"./SyntaxError/auto": "./SyntaxError/auto.js",
"./SyntaxError/polyfill": "./SyntaxError/polyfill.js",
"./SyntaxError/implementation": "./SyntaxError/implementation.js",
"./SyntaxError/shim": "./SyntaxError/shim.js",
"./TypeError": "./TypeError/index.js",
"./TypeError/auto": "./TypeError/auto.js",
"./TypeError/polyfill": "./TypeError/polyfill.js",
"./TypeError/implementation": "./TypeError/implementation.js",
"./TypeError/shim": "./TypeError/shim.js",
"./URIError": "./URIError/index.js",
"./URIError/auto": "./URIError/auto.js",
"./URIError/polyfill": "./URIError/polyfill.js",
"./URIError/implementation": "./URIError/implementation.js",
"./URIError/shim": "./URIError/shim.js",
"./package.json": "./package.json"
},
"scripts": {
"prepack": "npmignore --auto --commentLines=autogenerated",
"prepublishOnly": "safe-publish-latest",
"prepublish": "not-in-publish || npm run prepublishOnly",
"prelint": "evalmd README.md",
"lint": "eslint --ext=js,mjs .",
"postlint": "es-shim-api --multi --bound",
"tests-only": "nyc tape 'test/**/*.js'",
"pretest": "npm run lint",
"test": "npm run tests-only",
"posttest": "aud --production",
"version": "auto-changelog && git add CHANGELOG.md",
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/es-shims/error-cause.git"
},
"keywords": [
"javascript",
"polyfill",
"ecmascript",
"error",
"shim",
"syntaxerror",
"typeerror",
"referenceerror",
"aggregateerror",
"rangeerror",
"evalerror",
"urierror"
],
"author": "Jordan Harband <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/es-shims/error-cause/issues"
},
"homepage": "https://github.com/es-shims/error-cause#readme",
"dependencies": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.3",
"es-aggregate-error": "^1.0.13",
"es-errors": "^1.3.0",
"globalthis": "^1.0.3",
"has-property-descriptors": "^1.0.2"
},
"devDependencies": {
"@es-shims/api": "^2.5.0",
"@ljharb/eslint-config": "^21.1.0",
"aud": "^2.0.4",
"auto-changelog": "^2.4.0",
"eslint": "=8.8.0",
"evalmd": "^0.0.19",
"function.prototype.name": "^1.1.6",
"has-strict-mode": "^1.0.1",
"in-publish": "^2.0.1",
"npmignore": "^0.3.1",
"nyc": "^10.3.2",
"safe-publish-latest": "^2.0.0",
"tape": "^5.7.5"
},
"engines": {
"node": ">= 0.4"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": false,
"commitLimit": false,
"backfillLimit": false,
"hideCredit": true
},
"publishConfig": {
"ignore": [
".github/workflows"
]
}
}