forked from Meeco/hedera-did-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.74 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
{
"name": "@hashgraph/did-sdk-js",
"version": "1.0.0",
"engines": {
"npm": ">=8.1.2",
"node": ">=16.13.1"
},
"description": "Support for the Hedera Hashgraph DID Method on the Hedera JavaScript/TypeScript SDK",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist/**/*"
],
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"prepublish": "npm run build",
"build": "tsc",
"build:dev": "tsc --sourceMap -w",
"start": "node dist/index.js",
"start:dev": "nodemon --inspect dist/index.js",
"test": "jest --runInBand --detectOpenHandles --forceExit",
"test:unit": "jest --testPathPattern=test/unit",
"test:integration": "jest --testPathPattern=test/integration --runInBand --detectOpenHandles --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hashgraph/did-sdk-js.git"
},
"author": "Hedera Hashgraph, LLC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hashgraph/did-sdk-js/issues"
},
"homepage": "https://github.com/hashgraph/did-sdk-js#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^16.7.7",
"@types/node-fetch": "^2.6.4",
"jest": "^27.5.0",
"nodemon": "^2.0.7",
"prettier": "2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.3.2"
},
"dependencies": {
"@hashgraph/sdk": "^2.28.0",
"base58-js": "^1.0.5",
"did-resolver": "^3.1.5",
"js-base64": "^3.7.5",
"moment": "^2.29.1",
"multiformats": "^9.6.2",
"node-fetch": "^2.6.12",
"varint": "^6.0.0"
}
}