-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "esperf",
"version": "0.0.0-dev",
"description": "A command-line utility for detecting performance issues",
"main": "lib/main.js",
"type": "module",
"files": [
"lib",
"!lib/test"
],
"bin": {
"esperf": "lib/bin.js"
},
"scripts": {
"clean:build": "premove lib",
"clean:test": "premove coverage",
"build:js": "npm run clean:build && tsc",
"build": "npm run lint && npm run build:js",
"lint": "prettier --check src && eslint src",
"format": "prettier --write src",
"test": "npm run build:js && npm run clean:test && c8 node --test",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/es-tooling/esperf.git"
},
"keywords": [
"cli",
"e18e",
"perf",
"performance"
],
"author": "James Garbutt (https://github.com/43081j)",
"license": "MIT",
"bugs": {
"url": "https://github.com/es-tooling/esperf/issues"
},
"homepage": "https://github.com/es-tooling/esperf#readme",
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/node": "^22.1.0",
"c8": "^10.1.2",
"eslint": "^9.8.0",
"premove": "^4.0.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
},
"dependencies": {
"@ast-grep/napi": "^0.25.7",
"@clack/prompts": "^0.7.0",
"dedent": "^1.5.3",
"fd-package-json": "^1.2.0",
"fdir": "^6.2.0",
"module-replacements": "^2.3.2",
"module-replacements-codemods": "^1.0.2",
"picocolors": "^1.0.1",
"tinyexec": "^0.1.2"
}
}