-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
45 lines (45 loc) · 1.35 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": "go-network-framework",
"version": "0.1.3",
"description": "blockchain-service & state-channel engine for react-native environments",
"main": "lib/index.js",
"scripts": {
"test": "test",
"lint": "node_modules/tslint/bin/tslint -c tslint.json 'src/**/*.ts'",
"lint-js": "node node_modules/standard/bin/cmd 'src/state-channel/**/*.js' 'test/**/*.js' 'demo/**/*.js'",
"watch": "rm -rf lib/ && node_modules/typescript/bin/tsc --watch",
"compile": "rm -rf lib/ && node_modules/typescript/bin/tsc --declaration"
},
"author": "Amit Shah",
"license": "MIT",
"devDependencies": {
"@types/node": "^9.6.6",
"@types/sjcl": "^1.0.28",
"ethereumjs-wallet": "^0.6.0",
"jsdocs": "^1.0.0",
"node-fetch": "^2.1.2",
"node-persist": "^2.1.0",
"solc": "^0.4.21",
"standard": "^10.0.3",
"tape": "^4.9.0",
"truffle-contract": "^3.0.5",
"truffle-wallet-provider": "0.0.5",
"ts-loader": "^4.2.0",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.8.3",
"web3": "^1.0.0-beta.34"
},
"dependencies": {
"bn.js": "^4.11.8",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-tx": "^1.3.4",
"ethereumjs-util": "^5.1.5",
"machina": "^2.0.2",
"mqtt": "^2.15.3",
"rlp": "^2.0.0",
"rxjs": "^5.5.8",
"sjcl": "^1.0.7"
},
"typings": "./lib/index.d.ts"
}