forked from 2060-io/credo-ts-indy-vdr-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.4 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "aries-framework-indy-vdr-proxy",
"private": true,
"license": "Apache-2.0",
"description": "Monorepo containing Indy VDR Proxy client and server for Aries Framework JavaScript",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"@aries-framework/askar",
"**/@aries-framework/askar",
"**/@aries-framework/askar/**",
"@aries-framework/askar/**",
"@aries-framework/anoncreds",
"**/@aries-framework/anoncreds",
"**/@aries-framework/anoncreds/**",
"@aries-framework/anoncreds/**",
"@aries-framework/anoncreds-rs",
"**/@aries-framework/anoncreds-rs",
"**/@aries-framework/anoncreds-rs/**",
"@aries-framework/anoncreds-rs/**",
"@aries-framework/indy-vdr",
"**/@aries-framework/indy-vdr",
"**/@aries-framework/indy-vdr/**",
"@aries-framework/indy-vdr/**",
"@aries-framework/node",
"**/@aries-framework/node",
"**/@aries-framework/node/**",
"@aries-framework/node/**",
"@aries-framework/core",
"**/@aries-framework/core",
"**/@aries-framework/core/**",
"@aries-framework/core/**",
"@hyperledger/aries-askar-nodejs",
"**/@hyperledger/aries-askar-nodejs",
"**/@hyperledger/aries-askar-nodejs/**",
"@hyperledger/aries-askar-nodejs/**",
"@hyperledger/indy-vdr-nodejs",
"**/@hyperledger/indy-vdr-nodejs",
"**/@hyperledger/indy-vdr-nodejs/**",
"@hyperledger/indy-vdr-nodejs/**",
"@hyperledger/anoncreds-nodejs",
"**/@hyperledger/anoncreds-nodejs",
"**/@hyperledger/anoncreds-nodejs/**",
"@hyperledger/anoncreds-nodejs/**",
"tsyringe",
"**/tsyringe",
"**/tsyringe/**",
"tsyringe/**",
"reflect-metadata",
"**/reflect-metadata",
"**/reflect-metadata/**",
"reflect-metadata/**",
"class-validator",
"**/class-validator",
"**/class-validator/**",
"class-validator/**",
"class-transformer",
"**/class-transformer",
"**/class-transformer/**",
"class-transformer/**"
]
},
"repository": {
"url": "https://github.com/2060-io/aries-javascript-indy-vdr-proxy",
"type": "git"
},
"scripts": {
"check-types": "yarn check-types:build",
"check-types:build": "yarn workspaces run tsc --noEmit -p tsconfig.build.json",
"prettier": "prettier '**/*.+(js|json|ts|md|yml|yaml)'",
"format": "yarn prettier --write",
"check-format": "yarn prettier --list-different",
"test": "jest",
"lint": "eslint --ignore-path .gitignore .",
"validate": "yarn lint && yarn check-types && yarn check-format",
"prepare": "husky install"
},
"devDependencies": {
"@types/eslint": "^8.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"@types/ws": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"conventional-changelog-conventionalcommits": "^4.6.0",
"eslint": "^8.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.1",
"jest": "^27.0.4",
"prettier": "^2.3.1",
"ts-jest": "^27.0.3",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.9.0",
"typescript": "~4.9.5"
},
"engines": {
"node": ">= 16"
},
"resolutions": {
"ref-napi": "npm:@2060.io/ref-napi"
}
}