-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 920 Bytes
/
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
{
"name": "benchpress",
"version": "1.0.0",
"description": "Node JS Benchmarking Tool which writes scores online",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build",
"start": "ts-node-esm src/index.ts"
},
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"prettier-eslint": "^15.0.1",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"dependencies": {
"cardio-node": "^1.0.4",
"cli-progress": "^3.11.2",
"systeminformation": "^5.16.9"
}
}