-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
80 lines (80 loc) · 2.15 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
{
"name": "fuite",
"version": "5.0.5",
"description": "A tool for finding memory leaks in web apps",
"type": "module",
"main": "./src/index.js",
"module": "./src/index.js",
"bin": "./src/cli.cjs",
"exports": {
".": "./src/index.js"
},
"types": "./types/index.d.ts",
"files": [
"src",
"types"
],
"scripts": {
"test": "run-p --race test:serve test:runner",
"test:serve": "serve --no-request-logging",
"test:runner": "node --test ./test/spec/*.test.js",
"lint": "standard",
"version": "run-s version:changelog version:add",
"version:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version:add": "git add CHANGELOG.md"
},
"dependencies": {
"as-table": "^1.0.55",
"chalk": "^5.4.1",
"commander": "^13.0.0",
"exit-hook": "4.0.0",
"ono": "^7.1.3",
"ora": "^8.1.1",
"please-upgrade-node": "^3.2.0",
"pretty-bytes": "^6.1.1",
"puppeteer": "^24.1.0",
"quick-lru": "^7.0.0",
"source-map": "^0.7.4",
"stacktrace-parser": "^0.1.10",
"table": "^6.9.0"
},
"devDependencies": {
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-typescript": "^12.1.2",
"@rollup/plugin-virtual": "^3.0.2",
"chai": "^5.1.2",
"conventional-changelog-cli": "^5.0.0",
"navigo": "^8.11.1",
"npm-run-all": "^4.1.5",
"rollup": "^4.31.0",
"serve": "^14.2.4",
"standard": "^17.1.2",
"wait-for-localhost": "^4.1.0"
},
"keywords": [
"memory",
"leak",
"detector"
],
"author": "Nolan Lawson <nolan@nolanlawson.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/nolanlawson/fuite.git"
},
"bugs": {
"url": "https://github.com/nolanlawson/fuite/issues"
},
"homepage": "https://github.com/nolanlawson/fuite#readme",
"engines": {
"node": ">= 18.0.0"
},
"standard": {
"ignore": [
"thirdparty"
]
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}