forked from felixge/node-stack-trace
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 910 Bytes
/
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
{
"author": "Felix Geisendörfer <[email protected]> (http://debuggable.com/)",
"name": "stack-trace",
"description": "Get v8 stack traces as an array of CallSite objects.",
"version": "1.0.0-pre2",
"homepage": "https://github.com/felixge/node-stack-trace",
"repository": {
"type": "git",
"url": "git://github.com/felixge/node-stack-trace.git"
},
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"scripts": {
"test": "jest",
"release": "git push && git push --tags && npm publish"
},
"engines": {
"node": ">=16"
},
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.14.1",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"long-stack-traces": "0.1.2"
}
}