-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.32 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
{
"version": "0.1.4",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/identity-com/identity-agent",
"homepage": "https://github.com/identity-com/identity-agent",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --runInBand",
"lint": "tsdx lint --maxWarnings 0",
"postinstall": "husky install",
"prepare": "tsdx build",
"repl": "yarn build && local-repl",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"endOfLine": "auto",
"trailingComma": "es5"
},
"name": "@identity.com/identity-agent",
"author": {
"name": "Daniel Kelleher",
"email": "[email protected]",
"url": "https://github.com/dankelleher"
},
"module": "dist/identity-agent.esm.js",
"devDependencies": {
"@types/bs58": "^4.0.1",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/node-fetch": "^2.5.8",
"@types/node-localstorage": "^1.3.0",
"@types/ramda": "^0.27.34",
"@types/uuid": "^8.3.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"dotenv": "^8.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "5",
"jest-fetch-mock": "^3.0.3",
"local-repl": "^4.0.0",
"pinst": "^2.1.4",
"prettier": "^2.2.1",
"release-it": "^14.4.1",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"ttypescript": "^1.5.12",
"typedoc": "^0.20.27",
"typescript": "^4.2.1-rc",
"typescript-transform-paths": "^2.2.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.6.0",
"bitcoinjs-lib": "^5.2.0",
"bs58": "^4.0.1",
"debug": "^4.3.1",
"did-jwt": "^4.8.1",
"did-resolver": "^2.1.2",
"inversify": "^5.0.5",
"is-promise": "^4.0.0",
"node-fetch": "^2.6.1",
"node-localstorage": "^2.1.6",
"ramda": "^0.27.1",
"readable-web-to-node-stream": "^3.0.1",
"reflect-metadata": "^0.1.13",
"tweetnacl": "^1.0.3",
"uuid": "^8.3.2"
},
"resolutions": {
"graceful-fs": "4.2.4"
}
}