This repository was archived by the owner on Oct 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.54 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.54 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
89
90
91
{
"name": "@govtechsg/oa-verify",
"version": "0.0.0-development",
"description": "",
"main": "dist/index.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.module.js",
"types": "dist/types/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.modern.mjs",
"default": "./dist/index.modern.mjs",
"types": "./dist/types/index.d.ts"
},
"scripts": {
"build": "npm run clean && microbundle --tsconfig tsconfig.prod.json",
"clean": "rm -rf dist/",
"commit": "git-cz",
"commit:retry": "npm run commit -- --retry",
"test:ci": "jest --runInBand",
"test": "NODE_OPTIONS=--max-old-space-size=2048 jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect",
"generate:v3": "DEBUG=oa-verify* ts-node scripts/generate.v3.ts"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@govtechsg/dnsprove": "^2.8.0",
"@govtechsg/open-attestation": "^6.9.0",
"axios": "^1.7.7",
"debug": "^4.3.7",
"did-resolver": "^4.1.0",
"ethers": "^5.7.2",
"node-cache": "^5.1.2",
"runtypes": "^6.3.0",
"web-did-resolver": "^2.0.27"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@commitlint/prompt": "^19.4.1",
"@govtechsg/document-store-ethers-v5": "^4.1.0",
"@snyk/protect": "^1.1293.0",
"@types/debug": "^4.1.5",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"ajv-formats": "^2.1.1",
"commitizen": "^4.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"ethr-did-resolver": "^8.1.2",
"git-cz": "^4.9.0",
"husky": "^9.1.5",
"jest": "^27.5.1",
"jest-watch-typeahead": "^2.2.2",
"microbundle": "^0.15.1",
"msw": "^0.28.2",
"prettier": "^3.3.3",
"semantic-release": "^24.1.0",
"ts-jest": "^27.1.5",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Open-Attestation/oa-verify.git"
},
"config": {
"commitizen": {
"path": "node_modules/@commitlint/prompt"
}
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"snyk": true
}