-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 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
{
"name": "@veridid/workflow-parser",
"version": "0.5.0",
"description": "For parsing JSON data that represents data-driven state machines and delivering the display data for clients to render.",
"main": "dist/index.js",
"types": "dist/workflowparser.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "jest"
},
"keywords": [
"workflow",
"Parser",
"Data-Driven State Machine"
],
"author": "VeriDID Corp. Nas Til and Dave McKay",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DigiCred-Holdings/workflow-parser.git"
},
"homepage": "https://github.com/DigiCred-Holdings/workflow-parser#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.3.4",
"typescript": "^5.8.2"
},
"dependencies": {
"@types/pg": "^8.11.11",
"pg": "^8.14.1",
"reflect-metadata": "^0.2.2",
"ts-node": "^10.9.2",
"typedi": "^0.10.0",
"uuid": "^11.1.0"
},
"files": [
"dist"
]
}