-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.3 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": "@transmute/vc-jwt-sd",
"version": "0.1.4",
"description": "Experimental",
"main": "./dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"src",
"dist",
"badges",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf ./dist",
"prebuild": "npm run clean",
"build": "tsc -b",
"test": "NODE_NO_WARNINGS=1 NODE_OPTIONS=--experimental-vm-modules jest ",
"coverage": "NODE_NO_WARNINGS=1 NODE_OPTIONS=--experimental-vm-modules jest --ci --coverage",
"lint": "eslint --fix",
"shove": "git add -A; git commit -m ':rocket:'; git push origin main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/transmute-industries/vc-jwt-sd.git"
},
"author": "Orie Steele",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/transmute-industries/vc-jwt-sd/issues"
},
"homepage": "https://github.com/transmute-industries/vc-jwt-sd#readme",
"devDependencies": {
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {
"jose": "^4.13.1",
"yaml": "^2.3.1",
"moment": "^2.29.4"
}
}