-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.67 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
{
"name": "web-smartcard-demo",
"version": "0.0.5",
"description": "Demonstrates the Smart Card API",
"author": "Daniel d'Andrada <dandrader@google.com>",
"contributors": [
{
"name": "Luke Klimek",
"email": "zgroza@google.com"
}
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/dandrader/web-smartcard-demo.git"
},
"bugs": {
"url": "https://github.com/dandrader/web-smartcard-demo/issues"
},
"homepage": "https://github.com/dandrader/web-smartcard-demo#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/w3c-web-smart-card": "^0.0.1",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.2",
"dotenv": "^16.5.0",
"eslint": "^9.27.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.3.0",
"mini-css-extract-plugin": "^2.9.2",
"puppeteer-core": "^24.36.1",
"style-loader": "^4.0.0",
"ts-jest": "^29.3.4",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"wbn-sign": "0.2.5",
"wbn-sign-gcp-kms": "^1.0.2",
"webbundle-webpack-plugin": "^0.2.0",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1",
"webpack-merge": "^6.0.1"
},
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.wbn.js",
"build-gcp-kms": "webpack --config webpack.wbn-gcp-kmp.js",
"test": "jest"
},
"dependencies": {
"@peculiar/x509": "^1.12.3"
}
}