-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "blockchain-sdk",
"version": "1.0.1",
"description": "",
"directories": {
"doc": "doc"
},
"scripts": {
"test": "mocha dist/blockchain-sdk/test/*/**.js --timeout 120000",
"profile": "mocha dist/blockchain-sdk/test/block/test_executor.js --timeout 120000 --prof",
"build": "gulp build",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "https://git.tinyappcloud.com/lzc/chainSDK"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bdt-p2p": "^0.1.235",
"bignumber.js": "^6.0.0",
"bn.js": "^4.11.8",
"fs-extra": "^5.0.0",
"js-combinatorics": "^0.5.3",
"lodash": "^4.17.5",
"md5-file": "^4.0.0",
"msgpack-lite": "^0.1.26",
"secp256k1": "^3.5.0",
"sqlite": "2.9.1",
"sqlite3-transactions": "0.0.5",
"winston": "^2.4.2",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/fs-extra": "^5.0.2",
"@types/lodash": "^4.14.107",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.4",
"@types/sqlite3": "^3.1.3",
"@types/winston": "^2.3.9",
"chai": "^4.1.2",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^4.0.2",
"mocha": "^5.1.0",
"typescript": "^2.8.1"
}
}