-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.41 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
{
"type": "module",
"name": "xrays",
"version": "1.0.388",
"description": "Catch Errors before they become Fatal",
"author": "Intellibus Labs <labs@intellibus.com> (https://intellibus.dev/)",
"license": "MIT",
"homepage": "https://github.com/intellibus/xrays#readme",
"repository": {
"type": "git",
"url": "https://github.com/intellibus/xrays.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"esbuild": "esbuild src/*.ts --minify --outdir=dist --platform=node --target=node16 --format=esm",
"typedef": "tsc -d src/*.ts --declarationDir dist --emitDeclarationOnly",
"build": "run-p esbuild typedef",
"lint": "eslint ./**/*.ts -f mo",
"lint:fix": "eslint --fix ./**/*.ts -f mo",
"format": "prettier --write ./**/*.ts",
"test:unit": "NODE_ENV=test node --no-warnings --experimental-specifier-resolution=node --loader ./scripts/loader.js --loader=esmock scripts/spec.ts",
"test:unit:ci": "NODE_ENV=test c8 --lines 100 --reporter lcov --reporter text -n src node --no-warnings --experimental-specifier-resolution=node --loader ./scripts/loader.js --loader=esmock scripts/spec.ts",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"error handling",
"promise error handling",
"intellibus",
"open source universe"
],
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@commitlint/types": "17.4.4",
"@semantic-release/commit-analyzer": "10.0.4",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.0.4",
"@semantic-release/npm": "10.0.5",
"@semantic-release/release-notes-generator": "11.0.7",
"@tsconfig/node16": "16.1.1",
"@types/glob": "8.1.0",
"@types/node": "18.6.1",
"c8": "8.0.1",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.3.1",
"esbuild": "0.19.2",
"eslint": "8.48.0",
"eslint-config-intellibus": "1.0.155",
"eslint-formatter-mo": "1.2.0",
"esmock": "2.3.8",
"glob": "9.3.5",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"npm-run-all": "4.1.5",
"prettier": "3.0.3",
"pretty-quick": "3.1.3",
"semantic-release": "21.1.1",
"semantic-release-interval": "1.0.46",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "4.8.4",
"uvu": "0.5.6"
}
}