generated from ts-stack/starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
49
{
"name": "@ts-stack/stack-utils",
"version": "1.1.0",
"type": "module",
"description": "Captures and cleans stack traces",
"exports": {
".": {
"import": "./dist-mjs/index.js",
"require": "./dist-cjs/index.js",
"default": "./dist-mjs/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/ts-stack/stack-utils.git"
},
"homepage": "https://github.com/ts-stack/stack-utils",
"scripts": {
"build": "npm run build-mjs && npm run build-cjs",
"build-mjs": "tsc -b tsconfig.mjs.json",
"build-cjs": "tsc -b tsconfig.cjs.json && cp ./package.cjs.json ./dist-cjs/package.json",
"test": "npm run build && cp ./package.cjs.json ./dist-cjs/package.json && tap",
"posttest": "rimraf .nyc_output",
"clean": "rimraf dist*"
},
"keywords": [],
"author": "Isaac Z. Schlueter, James Talmage, Костя Третяк and Contributors",
"license": "MIT",
"tap": {
"check-coverage": false,
"coverage": false
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"bluebird": "^3.7.2",
"eslint": "^9.33.0",
"nested-error-stacks": "^2.1.1",
"pify": "^4.0.1",
"prettier": "^3.6.2",
"q": "^1.5.1",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21",
"tap": "^16.3.10",
"typescript": "^5.9.2"
}
}