-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (83 loc) · 2.03 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
{
"name" : "run-time-error",
"version" : "1.4.1",
"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/run-time-error",
"bugs" :
{
"url" : "https://github.com/lsphillips/run-time-error/issues"
},
"devDependencies" :
{
"chai" : "5.1.2",
"mocha" : "10.8.2",
"eslint" : "8.57.1",
"eslint-plugin-import" : "2.31.0",
"eslint-plugin-promise" : "6.6.0",
"@stylistic/eslint-plugin-js" : "1.8.1",
"eslint-config-protect-me-from-my-stupidity" : "10.1.1",
"@babel/core" : "7.26.0",
"@babel/preset-env" : "7.26.0",
"rollup" : "4.24.4",
"@rollup/plugin-terser" : "0.4.4",
"@rollup/plugin-babel" : "6.0.4"
},
"main" : "run-time-error.cjs",
"exports" :
{
"node" :
{
"import" : "./run-time-error.js",
"require" : "./run-time-error.cjs"
},
"browser" :
{
"import" : "./run-time-error.es5.js",
"require" : "./run-time-error.es5.cjs"
},
"default" : "./run-time-error.js"
},
"files" :
[
"/README.md",
"/CHANGELOG.md",
"/LICENSE.txt",
"/run-time-error.js",
"/run-time-error.cjs",
"/run-time-error.es5.js",
"/run-time-error.es5.cjs",
"/run-time-error.d.ts"
],
"repository" :
{
"type" : "git",
"url" : "https://github.com/lsphillips/run-time-error.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",
"prepack" : "npm run test && npm run build"
},
"license" : "MIT",
"engines" :
{
"node" : ">=12.0.0"
},
"types" : "run-time-error.d.ts"
}