-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 980 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
38
39
40
41
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "https://gajus.com"
},
"dependencies": {
"stacktrace-parser": "^0.1.10"
},
"description": "Stack traces as an array of stack frames with source maps support.",
"devDependencies": {
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/github": "^9.1.0",
"@semantic-release/npm": "^11.0.0",
"eslint": "^8.50.0",
"eslint-config-canonical": "^41.2.3",
"vitest": "^0.34.5"
},
"engines": {
"node": ">=18.0"
},
"files": [
"dist"
],
"keywords": [
"stack trace"
],
"main": "./dist/index.js",
"name": "get-stack-trace",
"repository": {
"type": "git",
"url": "[email protected]:gajus/get-stack-trace.git"
},
"scripts": {
"build": "rm -fr ./dist && tsc --project tsconfig.build.json",
"lint": "eslint . && tsc --noEmit",
"test": "vitest"
},
"types": "./dist/index.d.ts",
"version": "0.0.0"
}