-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.52 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.52 KB
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
{
"name": "@blockhub/node-sdk",
"description": "BlockHub Node.js SDK",
"repository": {},
"license": "Apache-2.0",
"version": "1.4.0",
"publishConfig": {
"access": "public"
},
"main": "build/src/index.js",
"scripts": {
"tsc": "./node_modules/tsc",
"watch": "tsc -w",
"format": "./node_modules/.bin/tsfmt -r",
"build-development": "npm run format && tsc --listEmittedFiles",
"build-production": "cp -R src build && node_modules/.bin/tsc",
"build": "npm run build-development"
},
"semistandard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
},
"dependencies": {
"@hyperbridge/funding-protocol": "1.0.16",
"@hyperbridge/marketplace-protocol": "1.0.16",
"@hyperbridge/token": "1.0.16",
"bip39": "^2.5.0",
"bluebird": "^3.5.3",
"truffle-contract": "^3.0.5",
"truffle-hdwallet-provider": "^0.0.6",
"typescript": "^3.2.2",
"typescript-formatter": "^7.2.2",
"web3": "^0.20.1"
},
"babel": {
"presets": [
"es2015"
],
"env": {
"development": {
"presets": []
},
"production": {
"presets": []
},
"test": {
"presets": []
}
}
},
"gitHead": "8b0cc820fab428ce26626f6720dbd6450114a734"
}