-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.71 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.71 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
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
{
"name": "argus-apm",
"version": "0.5.1",
"description": "Privacy-first performance diagnostics for Node.js — Argus",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
}
},
"files": [
"dist"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/sharon77242"
},
"type": "module",
"engines": {
"node": ">=14.18.0"
},
"scripts": {
"build:esm": "tsc -p tsconfig.build.json",
"build:cjs": "tsc -p tsconfig.cjs.json && node ../../scripts/post-build.mjs",
"build": "pnpm run build:esm && pnpm run build:cjs",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "node --test --test-concurrency=32 --experimental-strip-types tests/**/*.test.ts tests/*.test.ts",
"test:watch": "node --test --test-concurrency=32 --experimental-strip-types --watch tests/**/*.test.ts tests/*.test.ts",
"test:coverage": "node --test --experimental-test-coverage --test-coverage-lines=95 --test-coverage-functions=90 --test-coverage-branches=90 --experimental-strip-types tests/**/*.test.ts tests/*.test.ts",
"validate": "pnpm run typecheck && pnpm run lint && pnpm run format:check && pnpm run test:coverage",
"prepublishOnly": "node -e \"require('fs').copyFileSync('../../README.md','./README.md')\" && pnpm run build",
"postpublish": "node -e \"require('fs').unlinkSync('./README.md')\""
},
"keywords": [
"argus",
"node",
"node-js",
"diagnostics",
"performance",
"profiling",
"apm",
"observability",
"privacy",
"monitoring",
"tracing",
"opentelemetry",
"postgres",
"mysql",
"n+1",
"sql"
],
"author": "Sharon Alhazov (https://github.com/sharon77242)",
"license": "Apache-2.0",
"homepage": "https://github.com/sharon77242/Argus#readme",
"repository": {
"type": "git",
"url": "https://github.com/sharon77242/Argus.git"
},
"bugs": {
"url": "https://github.com/sharon77242/Argus/issues"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/source-map": "^0.5.7",
"eslint": "^10.3.0",
"jiti": "^2.4.2",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2"
},
"dependencies": {
"node-sql-parser": "^5.4.0",
"source-map": "^0.7.6"
}
}