-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.64 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
56
57
58
59
60
61
{
"name": "wbn-sign-webcrypto",
"version": "0.1.0",
"description": "Signing tool to sign a web bundle with integrity block using Web Cryptography API",
"homepage": "https://github.com/guest271314/wbn-sign-webcrypto",
"main": "./lib/wbn-sign.js",
"type": "module",
"exports": {
"import": "./lib/wbn-sign.js",
"require": "./lib/wbn-sign.cjs"
},
"types": "./lib/wbn-sign.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.cjs src/wbn-sign.ts --platform=node",
"test": "jasmine tests/*.js tests/*.cjs",
"lint": "npx prettier --write . --ignore-unknown --config ./package.json"
},
"bin": {
"wbn-sign": "./bin/wbn-sign.js",
"wbn-dump-id": "./bin/wbn-dump-id.js"
},
"repository": {
"type": "git",
"url": "https://github.com/guest271314/wbn-sign-webcrypto.git"
},
"keywords": [
"web bundles",
"webpackage",
"integrity-block"
],
"author": "guest271314 <[email protected]> (https://github.com/guest271314)",
"license": "WTFPLv2",
"dependencies": {
"base32-encode": "^2.0.0",
"cborg": "^1.9.4",
"commander": "^4.0.1"
},
"devDependencies": {
"@types/node": "^14.0.0",
"esbuild": "^0.14.47",
"jasmine": "^4.2.1",
"mock-stdin": "^1.0.0",
"prettier": "2.8.0",
"typescript": "^4.7.3"
},
"engines": {
"node": ">= 14.0.0",
"deno": ">= 1.39.1",
"bun": "1.0.18",
"npm": ">= 8.0.0"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 80,
"proseWrap": "always"
}
}