-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.68 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": "@vaxxnz/nzcp",
"version": "1.2.0",
"description": "A JavaScript implementation of the NZ COVID Pass verification",
"contributors": [
"Will Seagar <[email protected]>",
"Ilia Sidorenko <[email protected]>"
],
"repository": "git://github.com/vaxxnz/nzcp-js.git",
"license": "MIT",
"keywords": [
"typescript",
"esbuild",
"covid",
"new zealand",
"nz",
"covid pass",
"vaccine pass",
"vaccine certificate",
"sdk",
"nzcp",
"verifier",
"validator"
],
"main": "./dist/esbuild/node.js",
"types": "./dist/tsc/main.d.ts",
"browser": "./dist/esbuild/browser.js",
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"test-watch": "jest --watch",
"clean": "rm -rf dist build package",
"docs": "typedoc --entryPoints src/main.ts",
"build-all": "yarn clean && tsc --emitDeclarationOnly -p tsconfig.json && yarn ts-node build.ts",
"build-and-publish": "./build-and-publish"
},
"devDependencies": {
"@types/elliptic": "^6.4.14",
"@types/jest": "^26.0.21",
"@types/node": "^15.0.1",
"@types/node-fetch": "^2.5.6",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"base64-arraybuffer": "^1.0.2",
"did-resolver": "^3.1.3",
"dotenv": "^10.0.0",
"elliptic": "^6.5.4",
"esbuild": "^0.11.11",
"eslint": "^7.22.0",
"jest": "^26.6.3",
"js-sha256": "^0.9.0",
"postinstall-postinstall": "^2.1.0",
"rfc4648": "^1.5.0",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typedoc": "^0.20.35",
"typescript": "^4.2.3",
"web-did-resolver": "^2.0.7"
},
"dependencies": {}
}