-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "ntu",
"version": "1.0.0",
"description": "Network test utility",
"bin": {
"ntu": "dist/cli.cjs"
},
"scripts": {
"build": "run-s build:clean build:compile",
"build:clean": "rm -rf dist",
"build:compile": "rollup -c rollup.config.js",
"dev": "ts-node-dev src/main.ts",
"dev:cli": "ts-node-dev src/cli.ts",
"test:lint": "xo"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"@types/fast-stats": "^0.0.32",
"@types/mssql": "^8.1.1",
"@types/node": "^18.7.18",
"@types/node-fetch": "2",
"@types/pg": "^8.6.5",
"@types/yargs": "^17.0.12",
"fast-stats": "^0.0.6",
"npm-run-all": "^4.1.5",
"rollup": "^2.79.0",
"rollup-plugin-preserve-shebang": "^1.0.1",
"rollup-plugin-terser": "^7.0.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.3",
"xo": "^0.52.3"
},
"dependencies": {
"@sinclair/typebox": "^0.24.41",
"@slack/webhook": "^6.1.0",
"env-schema": "^5.0.0",
"fluent-json-schema": "^3.1.0",
"mssql": "^9.0.1",
"mysql2": "^2.3.3",
"node-fetch": "2",
"pg": "^8.8.0",
"yargs": "^17.5.1"
}
}