forked from lsphillips/run-time-error
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (72 loc) · 1.72 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
{
"name" : "run-time-error",
"version" : "1.4.0",
"type" : "module",
"description" : "A better error that is inspired by the Java exception that is also serializable to JSON.",
"author" :
{
"name" : "Luke Phillips",
"email" : "[email protected]"
},
"keywords" :
[
"error",
"serializable",
"json",
"exception"
],
"homepage" : "https://github.com/lsphillips/RuntimeError",
"bugs" :
{
"url" : "https://github.com/lsphillips/RuntimeError/issues"
},
"devDependencies" :
{
"chai" : "4.3.10",
"mocha" : "10.2.0",
"eslint" : "8.52.0",
"eslint-plugin-import" : "2.29.0",
"eslint-plugin-promise" : "6.1.1",
"eslint-config-protect-me-from-my-stupidity" : "9.5.1",
"@babel/core" : "7.23.2",
"@babel/preset-env" : "7.23.2",
"rollup" : "3.29.4",
"@rollup/plugin-terser" : "0.4.4",
"@rollup/plugin-babel" : "6.0.4"
},
"main": "./dist/cjs/run-time-error.cjs",
"types": "./dist/cjs/run-time-error.d.ts",
"exports": {
".": {
"types": "./dist/cjs/run-time-error.d.ts",
"require": "./dist/cjs/run-time-error.cjs"
}
},
"files" :
[
"./README.md",
"./CHANGELOG.md",
"./LICENSE.txt",
"dist",
"./run-time-error.esm.d.ts",
"./run-time-error.cjs.d.ts"
],
"repository" :
{
"type" : "git",
"url" : "https://github.com/lsphillips/RuntimeError.git"
},
"scripts" :
{
"test:lint" : "eslint \"**/*.js\" --ignore-path .gitignore",
"test:unit" : "mocha \"tests/**/*.js\"",
"test" : "npm run test:lint && npm run test:unit",
"build" : "rollup --config && node ./render-manifests.js",
"prepack" : "npm run test && npm run build"
},
"license" : "MIT",
"engines" :
{
"node" : ">=12.0.0"
}
}