-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "@mit-dci/opencbdc",
"version": "0.0.2",
"description": "An javascript module for interacting with the opencbdc-tx atomizer and 2pc environments",
"main": "index.js",
"scripts": {
"test": "mocha test/**/*.js",
"eslint": "eslint . && eslint src/**/*.js && eslint test/**/*.js",
"precommit": "eslint"
},
"author": "MIT Digital Currency Initiative & Federal Reserve Bank of Boston",
"license": "MIT",
"dependencies": {
"@enumatech/secp256k1-js": "^1.0.0",
"bech32": "^2.0.0",
"bip-schnorr": "^0.6.3",
"buffer": "^6.0.3",
"chai": "^4.3.4",
"crypto": "^1.0.1",
"mocha": "^9.0.2",
"net": "^1.0.2",
"secp256k1": "^4.0.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mit-dci/opencbdc-js.git"
},
"keywords": [
"opencbdc",
"cbdc",
"node.js",
"javascript"
],
"bugs": {
"url": "https://github.com/mit-dci/opencbdc-js/issues"
},
"homepage": "https://github.com/mit-dci/opencbdc-js#readme",
"devDependencies": {
"eslint": "^8.10.0",
"pre-commit": "^1.2.2"
}
}