-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.44 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
{
"name": "boa-wallet-lib",
"version": "0.0.4",
"description": "The TypeScript BOA Wallet library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "rimraf ./lib && tsc",
"test": "rimraf ./lib && tsc && mocha -r ts-node/register tests/**/*.test.ts",
"testnobuild": "mocha -r ts-node/register tests/**/*.test.ts",
"build": "rimraf ./lib && tsc"
},
"keywords": [
"Wallet",
"TypeScript"
],
"engines": {
"node": ">=14.x.x",
"npm": ">=6.x.x"
},
"engineStrict": true,
"author": "BOS Platform Foundation Korea",
"license": "MIT",
"dependencies": {
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/request": "^2.48.5",
"@types/urijs": "^1.19.14",
"axios": "^0.19.2",
"bip39": "^3.0.3",
"boa-sdk-ts": "0.0.43",
"boa-sodium-ts": "^0.1.0",
"body-parser": "^1.19.0",
"crypto": "^1.0.1",
"express": "^4.17.1",
"jsbi": "^3.1.4",
"jsonwebtoken": "^8.5.1",
"mocha": "^8.3.0",
"moment": "^2.29.1",
"request": "^2.88.2",
"urijs": "^1.19.2"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/crc": "^3.4.0",
"@types/mocha": "^8.2.1",
"@types/node": "^14.0.14",
"assert": "^2.0.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"typedoc": "^0.17.8",
"typescript": "^3.9.5"
},
"directories": {
"test": "tests"
}
}