-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
73 lines (73 loc) · 1.72 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
{
"name": "itc-ts",
"version": "1.0.0",
"scripts": {
"clean": "rimraf dist",
"build": "tsc",
"dev": "tsc -w",
"test": "jest --runInBand"
},
"author": "dbjbear@gmail.com",
"devDependencies": {
"@types/crypto-js": "^3.1.38",
"@types/jest": "^22.0.1",
"@types/node": "^8.5.7",
"jest": "^22.1.4",
"ts-jest": "^22.0.1",
"tsify": "^3.0.4",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.9.0"
},
"dependencies": {
"@types/async": "^2.0.46",
"@types/bitcoinjs-lib": "^3.3.1",
"@types/fs-extra": "^5.0.0",
"@types/koa": "^2.0.43",
"@types/lodash": "^4.14.92",
"@types/pino": "^4.7.1",
"@types/readline-sync": "^1.4.3",
"@types/sqlite3": "^3.1.1",
"@types/websocket": "0.0.36",
"@types/ws": "^3.2.1",
"async": "^2.6.0",
"bitcoinjs-lib": "^3.3.2",
"bitcore-lib": "^0.15.0",
"bitcore-mnemonic": "^1.5.0",
"clime": "^0.5.9",
"co": "^4.6.0",
"crypto": "^1.0.1",
"fs-extra": "^5.0.0",
"koa": "^2.4.1",
"koa-compose": "^4.0.0",
"leveldown": "^2.1.1",
"levelup": "^2.0.0-rc2",
"lodash": "^4.17.4",
"pino": "^4.10.3",
"process": "^0.11.10",
"readline-sync": "^1.4.7",
"secp256k1": "^3.4.0",
"sqlite": "^2.9.1",
"thirty-two": "^1.0.2",
"typescript": "^2.6.2",
"uuid": "^3.2.1",
"websocket": "^1.0.25",
"websocket-as-promised": "^0.6.0",
"ws": "^4.0.0"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}