-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "@entidad/credo-ts-survey",
"main": "build/index",
"types": "build/index",
"version": "0.1.9",
"files": [
"build"
],
"license": "HIPPOCRATIC LICENSE",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/Entidad/didcomm.org/tree/main/site/content/protocols/survey/0.1",
"repository": {
"type": "git",
"url": "https://github.com/Entidad/credo-ts-survey",
"directory": "packages/credo-ts-survey"
},
"scripts": {
"build": "yarn run clean && yarn run compile",
"clean": "rimraf ./build",
"compile": "tsc -p tsconfig.build.json",
"prepublishOnly": "yarn run build",
"test": "jest"
},
"dependencies": {
"@credo-ts/core": "0.5.10",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"node-fetch": "^2.6.1",
"rxjs": "^7.2.0",
"webcrypto-core": "^1.8.0"
},
"devDependencies": {
"@babel/traverse": "^7.23.2",
"@credo-ts/node": "0.5.10",
"@types/jest": "^29.5.0",
"@types/node-fetch": "2.6.2",
"jest": "^29.5.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^4.4.0",
"typescript": "~4.9.5"
}
}