forked from gs1us-technology/vc-verifier-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "@gs1us/vc-verifier-rules",
"version": "1.0.0",
"description": "GS1 US Rules Verification Library for validating GS1 based verifiable credentials.",
"main": "./dist/index.js",
"types": ".dist/index.d.js",
"module": "./dist/index.js",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.js",
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/gs1us-technology/vc-verifier-rules.git"
},
"keywords": [
"verifiable",
"credential",
"json-ld",
"GS1"
],
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"build": "tsup --publicDir",
"dev": "nodemon",
"postbuild": "copyfiles -u 1 \"public/json/**/**.json\" \"dist\"",
"start": "tsc & npm run postbuild"
},
"author": "GS1 US",
"license": "Apache-2.0",
"dependencies": {
"copyfiles": "^2.4.1",
"jest": "^29.5.0",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.2"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/jest": "^29.5.2",
"@types/node": "^18.15.10",
"cross-env": "^7.0.3",
"nodemon": "^2.0.22",
"ts-jest": "^29.1.0"
}
}