forked from blockchainsllc/in3-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.96 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "in3",
"version": "1.1.6",
"description": "Typescript-version of the incubed client",
"main": "js/src/index.js",
"scripts": {
"build": "tsc -p .",
"test": "CI=true nyc mocha --timeout 5000 -R $(pwd)/node_modules/in3-common/js/test/util/mochaReporter --require ts-node/register --require source-map-support/register --full-trace --bail test/*.ts && cp -r coverage test/report/",
"updateTypes": "npm install slockit-generator; cd node_modules/slockit-generator; npm run build; cd ../..; slockit-types ",
"changelog": "auto-changelog",
"browserify": "echo '{}' > node_modules/ethereum-common/genesisState.json; echo '{}' > node_modules/ethereumjs-vm/node_modules/ethereum-common/genesisState.json; cd js; browserify --full-paths -r ./src/client/Client.js:in3 -t [ babelify ] -o in3.js; uglifyjs --compress --source-map --output in3.min.js -- in3.js; cd ..",
"disc": "cd js; discify in3.js > in3.html; cd ..",
"cmd": "node --experimental-repl-await --inspect -e \"axios=require('axios').default;in3=require('./js/src/index');Client=in3.default;c=new Client()\" -i"
},
"nyc": {
"include": [
"src/**/*.ts",
"test/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/slockit/in3.git"
},
"author": "Simon Jentzsch",
"license": "in3",
"bugs": {
"url": "https://github.com/slockit/in3/issues"
},
"homepage": "https://github.com/slockit/in3#readme",
"devDependencies": {
"@babel/core": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@types/cbor": "^2.0.0",
"@types/chai": "^4.1.3",
"@types/koa": "^2.0.44",
"@types/koa-bodyparser": "^4.2.0",
"@types/koa-router": "^7.0.27",
"@types/mocha": "^5.2.0",
"args": "^5.0.0",
"auto-changelog": "^1.10.2",
"babelify": "^9.0.0",
"browserify": "^16.2.3",
"chai": "^4.1.2",
"disc": "^1.3.3",
"handlebars": ">=4.1.2",
"mocha": "^5.1.1",
"nyc": "^11.8.0",
"source-map-support": "^0.5.6",
"ts-node": "^6.0.3",
"typedoc": "^0.11.1",
"uglify-es": "^3.2.0"
},
"dependencies": {
"@ethersproject/abi": "^5.0.0-beta.133",
"ajv": "^6.5.1",
"axios": "^0.18.1",
"bs58": "^4.0.1",
"buffer": "^5.2.1",
"cbor": "^4.0.0",
"ethereumjs-abi": "0.6.7",
"ethereumjs-account": "2.0.5",
"ethereumjs-tx": "1.3.7",
"ethereumjs-util": "6.1.0",
"ethereumjs-vm": "2.3.5",
"ethjs-util": "0.1.4",
"merkle-patricia-tree": "^2.3.1",
"multihashing-async": "^0.5.1",
"protons": "^1.0.1",
"in3-common": "^1.1.2"
},
"optionalDependencies": {
"koa": "^2.5.3",
"koa-bodyparser": "^4.2.1"
},
"keywords": [
"ethereum",
"slockit",
"iot",
"in3",
"client",
"jsonrpc"
]
}