-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 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
{
"name": "@brigad/anubis",
"version": "1.2.0",
"description": "encryption tool using AWS KMS",
"main": "lib/index.js",
"scripts": {
"build": "ncc build src/main.ts --minify --out lib --target es2021",
"prepare": "echo \"Error: build, then publish from lib\" && exit 1",
"watch": "ncc build src/main.ts --watch --out lib",
"lint": "eslint ./src --ext ts && echo 'Lint complete.'",
"lint:fix": "eslint ./src --ext ts --fix && echo \"Lint & fix complete.\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Grisha Ghukasyan <[email protected]>",
"contributors": ["Thibault Malbranche <[email protected]>"],
"bin": {
"anubis": "lib/index.js"
},
"dependencies": {
"@aws-sdk/client-kms": "^3.100.0",
"colors": "^1.4.0",
"command-line-args": "^5.2.1",
"diff": "^5.1.0",
"fast-glob": "3.2.12",
"yesno": "^0.4.0"
},
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/diff": "^5.0.0",
"@types/node": "^16.8.0",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"@vercel/ncc": "0.36.0",
"eslint": "^8.29.0",
"typescript": "^4.9.4"
}
}