-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 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
{
"name": "bloop-server-tester",
"version": "2.0.0",
"description": "CLI tool for testing bloop servers",
"type": "module",
"scripts": {
"start": "ts-node-esm src/cli.ts",
"build": "tsc",
"lint": "eslint src",
"prepare": "husky install"
},
"bin": {
"bloop-server-tester": "bin/bloop-server-tester.js"
},
"files": [
"bin/**/*",
"dist/**/*"
],
"keywords": [
"AWS",
"SSM",
"Manager",
"CLI"
],
"author": "Ben Scholzen 'DASPRiD' <[email protected]>",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "https://github.com/bloop-box/bloop-server-tester.git"
},
"dependencies": {
"chalk": "^5.2.0",
"commander": "^11.1.0",
"update-notifier": "^6.0.2"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@tsconfig/node18": "^1.0.1",
"@types/node": "^18.13.0",
"@types/update-notifier": "^6.0.2",
"eslint": "^8.33.0",
"eslint-config-dasprid": "^0.1.14",
"husky": "^8.0.3",
"lint-staged": "^13.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}