forked from WICG/webpackage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.47 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "wbn-sign",
"version": "0.3.2",
"description": "Tool to sign web bundles and manage signatures of signed web bundles.",
"homepage": "https://github.com/WICG/webpackage/tree/main/js/sign",
"main": "./lib/wbn-sign.cjs",
"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 --outfile=lib/wbn-sign.cjs src/wbn-sign.ts --platform=node",
"test": "jasmine tests/*.js tests/*.cjs",
"test:cli": "jasmine tests/cli_test.js",
"prepublishOnly": "npm test",
"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/WICG/webpackage.git",
"directory": "js/sign"
},
"keywords": [
"web bundles",
"webpackage",
"integrity-block"
],
"author": "Sonja Laurila <laurila@google.com> (https://github.com/sonkkeli)",
"contributors": [
"Christian Flach <cmfcmf@google.com> (https://github.com/cmfcmf)",
"Andrew Rayskiy <greengrape@google.com> (https://github.com/GrapeGreen)",
"Zgroza (Luke) Klimek <zgroza@google.com> (https://github.com/zgroza)",
"Robert Ferens <rferens@google.com> (https://github.com/rferens)"
],
"license": "W3C-20150513",
"dependencies": {
"base32-encode": "^2.0.0",
"cborg": "^4.2.14",
"commander": "^14.0.0",
"picocolors": "^1.1.1",
"read": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/node": "^16.0.0",
"esbuild": "^0.25.0",
"eslint": "^10.0.2",
"globals": "^17.3.0",
"jasmine": "^6.1.0",
"mock-stdin": "^1.0.0",
"prettier": "3.5.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.5.0"
},
"engines": {
"node": ">= 22.13.0",
"npm": ">= 10.0.0"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 80,
"proseWrap": "always",
"trailingComma": "es5",
"plugins": [
"@ianvs/prettier-plugin-sort-imports"
],
"importOrder": [
"<BUILTIN_MODULES>",
"",
"<THIRD_PARTY_MODULES>",
"",
"^[.]"
],
"importOrderTypeScriptVersion": "5.9.3",
"importOrderCaseSensitive": false
}
}