-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.58 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
{
"name": "wbn-sign-gcp-kms",
"version": "0.0.1",
"description": "Tool for signing a web bundle using GCP KMS",
"main": "./lib/wbn-sign-gcp-kms.cjs",
"type": "module",
"exports": {
"import": "./lib/wbn-sign-gcp-kms.js",
"require": "./lib/wbn-sign-gcp-kms.cjs"
},
"types": "./lib/wbn-sign-gcp-kms.d.js",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "esbuild --bundle --format=cjs --external:cborg --outfile=lib/wbn-sign-gcp-kms.cjs src/wbn-sign-gcp-kms.ts --platform=node",
"test": "jasmine tests/*.js tests/*.cjs",
"lint": "npx prettier --write src/ tests/ bin/ README.md --ignore-unknown --config ./package.json"
},
"bin": {
"wbn-gcp-kms": "./bin/wbn-gcp-kms.js",
"wbn-gcp-kms-sign": "./bin/wbn-gcp-kms-sign.js",
"wbn-gcp-kms-get-ids": "./bin/wbn-gcp-kms-get-ids.js"
},
"repository": {
"type": "git",
"url": "https://github.com/chromeos/wbn-sign-gcp-kms"
},
"author": "Luke Klimek <zgroza@google.com> (https://github.com/zgroza)",
"license": "Apache-2.0",
"dependencies": {
"@google-cloud/kms": "^4.5.0",
"commander": "^7.0.0",
"read": "^2.0.0",
"wbn-sign": "0.2.1"
},
"devDependencies": {
"@types/fast-crc32c": "^2.0.2",
"@types/node": "^16.0.0",
"esbuild": "^0.14.47",
"prettier": "2.8.0",
"typescript": "^4.9.5",
"jasmine": "^5.2.0"
},
"engines": {
"node": ">= 16.0.0",
"npm": ">= 8.0.0"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 80,
"proseWrap": "always"
}
}