forked from dapplion/benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.07 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
{
"name": "@dapplion/benchmark",
"version": "1.0.0",
"repository": "[email protected]:dapplion/benchmark.git",
"author": "dapplion <[email protected]>",
"license": "MIT",
"bin": {
"benchmark": "./bin/index.cjs"
},
"files": [
"lib/**/*.d.ts",
"lib/**/*.d.ts.map",
"lib/**/*.js",
"lib/**/*.js.map",
"lib/**/package.json",
"*.d.ts",
"*.js",
"bin"
],
"type": "module",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
}
},
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc -p tsconfig.build.esm.json && echo '{\"type\": \"module\"}' > ./lib/esm/package.json",
"build:cjs": "tsc -p tsconfig.build.cjs.json && echo '{\"type\": \"commonjs\"}' > ./lib/cjs/package.json",
"test:unit": "vitest run test/unit/**/*.test.ts",
"lint": "eslint --color src/ test/",
"prepublishOnly": "yarn build",
"benchmark": "node --loader ts-node/esm ./src/cli/cli.ts 'test/perf/**/*.test.ts'",
"writeDocs": "node --loader ts-node/esm scripts/writeOptionsMd.ts"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/node": "^22.10.2",
"@types/yargs": "^17.0.33",
"chai": "^4.5.0",
"dotenv": "^10.0.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.0",
"rimraf": "^5.0.10",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.16.0",
"vitest": "^2.1.8",
"vitest-in-process-pool": "^1.0.0"
},
"dependencies": {
"@actions/cache": "^1.0.7",
"@actions/github": "^5.0.0",
"@vitest/runner": "^2.1.6",
"ajv": "^8.6.0",
"aws-sdk": "^2.932.0",
"csv-parse": "^4.16.0",
"csv-stringify": "^5.6.2",
"glob": "^10.4.5",
"log-symbols": "^7.0.0",
"yargs": "^17.7.2"
},
"resolutions": {
"lru-cache": "10.4.3"
}
}