-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.18 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@dnlup/doc",
"version": "5.0.3",
"description": "Get usage and health data about your Node.js process",
"main": "index.js",
"types": "index.d.ts",
"exports": "./index.js",
"scripts": {
"lint": "eslint .",
"test": "npm run test:js && npm run test:ts && npm run test:esm",
"pretest:ci": "npm run lint",
"test:ci": "npm run test:js -- --coverage-report=lcovonly && npm run test:ts && npm run test:esm",
"test:js": "tap -J test/*.test.js",
"test:ts": "attw --pack && tsd",
"test:esm": "tap --no-coverage test/esm/*.test.js",
"trace:ic:server": "PORT=3000 deoptigate benchmarks/doc.js",
"trace:ic:resourceUsage": "PORT=3000 deoptigate benchmarks/docResourceUsage.js",
"trace:ic:load": "autocannon -d 60 -c 100 -p 10 localhost:3000",
"bench": "npm run bench:base && npm run bench:doc",
"bench:resourceUsage": "npm run bench:base && npm run bench:doc:resourceUsage",
"bench:base": "PORT=3000 concurrently -k -s first \"node benchmarks/base.js\" \"node -e 'setTimeout(()=>{}, 1000)' && autocannon -d 60 -c 100 -p 10 localhost:3000\"",
"bench:doc": "PORT=3000 concurrently -k -s first \"node benchmarks/doc.js\" \"node -e 'setTimeout(()=>{}, 1000)' && autocannon -d 60 -c 100 -p 10 localhost:3000\"",
"bench:doc:resourceUsage": "PORT=3000 concurrently -k -s first \"node benchmarks/docResourceUsage.js\" \"node -e 'setTimeout(()=>{}, 1000)' && autocannon -d 60 -c 100 -p 10 localhost:3000\"",
"doc": "markdown-toc -i README.md",
"prerelease": "npm cit",
"release": "HUSKY=0 standard-version --sign",
"postrelease": "npm run push && npm publish",
"prenext": "npm cit",
"next": "HUSKY=0 standard-version --sign --prerelease",
"postnext": "npm run push && npm publish --tag next",
"push": "git push origin --follow-tags `git rev-parse --abbrev-ref HEAD`",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/dnlup/doc.git"
},
"files": [
"lib",
"types",
"index.js",
"index.d.ts"
],
"keywords": [
"process",
"memory",
"cpu",
"event",
"loop",
"delay",
"health",
"metrics"
],
"author": "dnlup <[email protected]>",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/dnlup/doc/issues"
},
"homepage": "https://github.com/dnlup/doc#readme",
"engines": {
"node": ">=18"
},
"tsd": {
"directory": "."
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.13.1",
"@types/node": "^20.6.3",
"atomic-sleep": "^1.0.0",
"autocannon": "^7.12.0",
"concurrently": "^8.2.1",
"deoptigate": "^0.7.1",
"eslint": "^8.49.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^15.0.2",
"markdown-toc": "^1.2.0",
"semver": "^7.5.4",
"standard-version": "^9.5.0",
"tap": "^16.3.8",
"tsd": "^0.29.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@dnlup/hrtime-utils": "^1.1.0"
}
}