-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.16 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.16 KB
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
{
"name": "extensible-custom-error",
"version": "0.0.8",
"description": "JavaScript extensible custom error that can take a message and/or an Error object",
"main": "./index.cjs",
"module": "./index.mjs",
"types": "types/index.d.ts",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.cjs",
"default": "./index.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"lint": "eslint src test",
"test": "nyc --all mocha test",
"coverage": "nyc report --reporter=text-lcov > coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "https://github.com/necojackarc/extensible-custom-error.git"
},
"keywords": [
"error"
],
"author": "necojackarc",
"license": "MIT",
"bugs": {
"url": "https://github.com/necojackarc/extensible-custom-error/issues"
},
"homepage": "https://github.com/necojackarc/extensible-custom-error#readme",
"devDependencies": {
"chai": "^6.0.1",
"eslint": "^9.35.0",
"globals": "^16.3.0",
"mocha": "^11.7.2",
"nyc": "^17.1.0",
"tsd": "^0.33.0",
"typescript": "^5.9.2"
},
"nyc": {
"include": [
"src"
]
}
}