forked from Scopevisio/eudgc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.5 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": "@Spookfish-ai/eudgc",
"version": "1.0.6",
"description": "EuDGC (European Digital Green Certificate) handling in Javascript and Typescript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "tsup src/index.ts --format cjs --watch --dts",
"build": "tsup src/index.ts --format cjs --dts && cp dist/index.js docs/eudgc.js",
"prepublishOnly": "tsup src/index.ts --format cjs --dts && cp dist/index.js docs/eudgc.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"EuDGC",
"Covid",
"Vaccination",
"European",
"Digital",
"Green",
"Certificate"
],
"author": "Scopevisio AG / Stepan Rutz",
"license": "Apache-2.0",
"dependencies": {
"assert": "^2.0.0",
"base45": "^3.0.0",
"bignumber.js": "^9.0.1",
"browserify-zlib": "^0.2.0",
"cbor": "^8.1.0",
"cbor-web": "^8.1.0",
"crypto-browserify": "^3.12.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"tsup": "^5.11.11",
"util": "^0.12.4"
},
"devDependencies": {
"@types/bignumber.js": "^5.0.0",
"@types/webpack-env": "^1.16.1",
"buffer": "^6.0.3",
"install": "^0.13.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Spookfish-ai/eudgc.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}