-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.97 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
{
"name": "cronometro",
"version": "4.0.0",
"description": "Simple benchmarking suite powered by HDR histograms.",
"homepage": "https://sw.cowtech.it/cronometro",
"repository": {
"type": "git",
"url": "git+https://github.com/ShogunPanda/cronometro.git"
},
"keywords": [
"benchmark",
"hdr"
],
"bugs": {
"url": "https://github.com/ShogunPanda/cronometro/issues"
},
"author": "Shogun <[email protected]>",
"license": "ISC",
"private": false,
"files": [
"dist",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
],
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "swc --strip-leading-paths --delete-dir-on-start -s -w -d dist src",
"build": "swc --strip-leading-paths --delete-dir-on-start -d dist src",
"postbuild": "concurrently npm:lint npm:typecheck",
"format": "prettier -w src test",
"lint": "eslint --cache",
"typecheck": "tsc -p . --emitDeclarationOnly",
"test": "TS_NODE_PROJECT=tsconfig.test.json c8 -c test/config/c8-local.json node --import @swc-node/register/esm-register --test test/*.test.ts",
"test:ci": "TS_NODE_PROJECT=tsconfig.test.json c8 -c test/config/c8-ci.json node --import @swc-node/register/esm-register --test-reporter=tap --test test/*.test.ts",
"ci": "npm run build && npm run test:ci",
"prepublishOnly": "npm run ci",
"postpublish": "git push origin && git push origin -f --tags"
},
"dependencies": {
"@swc-node/register": "^1.10.9",
"acquerello": "^3.0.0",
"hdr-histogram-js": "^3.0.0",
"table": "^6.8.2"
},
"devDependencies": {
"@cowtech/eslint-config": "10.0.0",
"@swc/cli": "0.4.1-nightly.20240914",
"@swc/core": "^1.7.36",
"@types/node": "^22.7.7",
"c8": "^10.1.2",
"chokidar": "^4.0.1",
"concurrently": "^9.0.1",
"eslint": "^9.13.0",
"prettier": "^3.3.3",
"proxyquire": "^2.1.3",
"typescript": "^5.6.3"
},
"engines": {
"node": ">= 20.18.0"
}
}