-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
79 lines (79 loc) · 2.11 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
{
"name": "@transmute/cli",
"version": "0.9.5",
"description": "Transmute Command Line Interface",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"bin": {
"transmute": "dist/index.js"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "ncc build -m src/action/run.ts",
"postbuild": "scripts/sbom.diagnostic.sh",
"transmute": "node dist/index.js",
"lint": "eslint ./src --fix",
"test": "jest",
"coverage": "jest --ci --coverage --runInBand",
"prerelease": "npm run build",
"release": "npm version patch && git add ./package.json",
"postrelease": "git push --tags",
"shove": "npm run build; git add -A; git commit -m ':rocket:'; git push origin main"
},
"repository": {
"type": "git",
"url": "https://github.com/transmute-industries/transmute.git"
},
"keywords": [
"verifiable",
"credentials",
"decentralized",
"identifiers",
"actions",
"github-actions"
],
"author": "Orie Steele",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/transmute-industries/transmute/issues"
},
"homepage": "https://github.com/transmute-industries/transmute#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@azure/identity": "^4.4.1",
"@google-cloud/kms": "^4.5.0",
"@transmute/azure-keyvault-cose-sign": "^0.0.0",
"@transmute/cose": "^0.2.11",
"@transmute/edn": "^0.0.5",
"@transmute/google-cloud-kms-cose-sign": "^0.0.1",
"@transmute/sdk": "^0.0.0",
"@transmute/verifiable-credentials": "^0.3.3",
"axios": "^1.7.3",
"dotenv": "^16.4.5",
"jose": "^5.6.3",
"jsonld": "^8.3.2",
"moment": "^2.30.1",
"neo4j-driver": "^5.23.0"
},
"devDependencies": {
"@types/jest": "^29.2.6",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"@vercel/ncc": "^0.36.0",
"dotenv-cli": "^4.0.0",
"eslint": "^8.30.0",
"jest": "^29.7.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}