forked from icetea-labs/icetea_chain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.77 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
98
99
100
{
"name": "@iceteachain/node",
"version": "0.1.0",
"description": "Icetea Blockchain",
"scripts": {
"fix": "standard --fix",
"lint": "standard",
"test": "jest --test-environment ./test/icetea.env.js",
"bail": "jest --bail --test-environment ./test/icetea.env.js",
"test:coverage": "npm run test -- --coverage",
"start": "standard --fix && node icetea/index.js",
"gate": "node gate/index.js",
"reset": "tendermint unsafe_reset_all && node ./scripts/destroy.js",
"dump": "node ./scripts/dump.js",
"show": "sudo lsof -i tcp:26657",
"deploybot": "node scripts/deploybot",
"docs:build": "node_modules/.bin/jsdoc --configure jsdoc.json --verbose",
"blockchain": "tendermint node & node icetea/index.js"
},
"keywords": [
"icetea",
"blockchain",
"tendermint"
],
"author": "Trada Tech",
"license": "MIT",
"standard": {
"parser": "babel-eslint",
"ignore": [
"**/tmp/",
"**/example/",
"/web/botui.js"
],
"global": [
"BigInt"
],
"env": [
"jest"
]
},
"jest": {
"collectCoverageFrom": [
"<rootDir>/icetea/**/*",
"!<rootDir>/node_modules/"
]
},
"pre-commit": [
"lint"
],
"dependencies": {
"@babel/core": "7.11.4",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.10.4",
"@babel/plugin-proposal-optional-chaining": "7.11.0",
"@babel/plugin-proposal-private-methods": "7.10.4",
"@babel/plugin-transform-flow-strip-types": "7.10.4",
"@hapi/joi": "17.1.1",
"@iceteachain/sunseed": "github:tradatech/sunseed",
"@iceteachain/utils": "github:TradaTech/icetea-utils",
"@iceteachain/web3": "^0.2.5",
"@webassemblyjs/ast": "1.9.0",
"@webassemblyjs/wasm-parser": "1.9.0",
"abci": "git+https://github.com/tendermint/js-abci.git",
"async": "^3.2.0",
"axios": "^0.20.0",
"big.js": "5.2.2",
"chalk": "^4.1.0",
"cheerio": "1.0.0-rc.3",
"commander": "^6.0.0",
"debug": "4.1.1",
"dotenv": "8.2.0",
"level": "6.0.1",
"lodash": "4.17.20",
"merkle-patricia-tree": "3.0.0",
"node-schedule": "^1.3.2",
"object-sizeof": "1.6.1",
"query": "github:protobi/query",
"rimraf": "3.0.2",
"semver": "7.3.2",
"tendermint-node": "^5.2.0",
"wasm-metering": "0.2.1"
},
"devDependencies": {
"axios-mock-adapter": "^1.18.2",
"babel-eslint": "^10.1.0",
"get-port": "^5.1.1",
"jest": "^26.4.2",
"jest-environment-node": "^26.3.0",
"jsdoc": "^3.6.5",
"jsdoc-template": "git+https://github.com/braintree/jsdoc-template.git",
"pm2": "^4.4.1",
"pre-commit": "^1.2.2",
"standard": "^14.3.4",
"tempy": "0.6.0"
},
"bin": {
"icetea": "cli/index.js"
},
"preferGlobal": true
}