-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
112 lines (112 loc) · 3.51 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@govtechsg/open-attestation",
"version": "0.0.0-development",
"description": "## Usage",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"scripts": {
"benchmark:qr-code": "ts-node --transpile-only benchmarks/qr-code",
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:type",
"build:cjs": "tsc --module commonjs --outDir dist/cjs --project ./tsconfig.prod.json",
"build:esm": "tsc --module es2015 --outDir dist/esm --project ./tsconfig.prod.json",
"build:type": "tsc -d --emitDeclarationOnly --outDir dist/types --project ./tsconfig.prod.json",
"build:umd": "rollup -c",
"clean": "rm -rf dist/",
"commit": "git-cz",
"commit:retry": "npm run commit -- --retry",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:vc": "scripts/runVcTest.sh",
"lint": "eslint . --ext .ts,.json --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"publish:schema": "./scripts/publishSchema.sh",
"postinstall": "node scripts/postInstall",
"prebuild": "node scripts/preBuild"
},
"files": [
"/dist",
"/scripts"
],
"author": "Raymond Yeh <[email protected]> (http://geek.sg)",
"contributors": [
"RJ Chow <[email protected]> (https://about.rjchow.com)"
],
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@commitlint/prompt": "^17.6.7",
"@rollup/plugin-json": "^4.1.0",
"@types/debug": "^4.1.7",
"@types/jest": "^29.5.3",
"@types/js-base64": "^3.3.1",
"@types/jsonld": "^1.5.6",
"@types/lodash": "^4.14.171",
"@types/qrcode": "^1.4.1",
"@types/uuid": "^8.3.1",
"@types/validator": "^13.6.3",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"ajv": "^8.12.0",
"cbor": "^7.0.6",
"commitizen": "^4.2.5",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"git-cz": "^4.7.6",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^2.3.2",
"qrcode": "^1.5.1",
"quicktype": "^15.0.260",
"rollup": "^2.79.1",
"rollup-plugin-commonjs": "^10.1.0",
"semantic-release": "^22.0.8",
"ts-jest": "^29.1.1",
"ts-node": "^9.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/logger": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@govtechsg/jsonld": "^0.1.0",
"ajv-formats": "^2.1.1",
"cross-fetch": "^3.1.5",
"debug": "^4.3.2",
"flatley": "^5.2.0",
"js-base64": "^3.6.1",
"js-sha3": "^0.8.0",
"lodash": "^4.17.21",
"runtypes": "^6.3.2",
"uuid": "^8.3.2",
"validator": "^13.7.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/Open-Attestation/open-attestation.git"
},
"bugs": {
"url": "https://github.com/Open-Attestation/open-attestation/issues"
},
"homepage": "https://github.com/Open-Attestation/open-attestation#readme",
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "node_modules/@commitlint/prompt"
}
}
}