-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
128 lines (128 loc) · 3.99 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "nocust-client",
"private": false,
"version": "4.0.2",
"description": "Client library to interact with NOCUST Commit-chains",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": true,
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"build:webpack": "webpack --config webpack.config.js",
"release": "yarn build && npm publish",
"release-beta": "yarn build && npm publish --tag beta",
"lint": "eslint src/**/*.ts specs/**/*.ts --fix",
"test": "yarn test:unit && yarn test:e2e",
"test:limbo": "yarn test:unit && yarn test:e2e:limbo",
"test:unit": "jest --config specs/jest.config.js --verbose",
"test:e2e": "jest --config specs/e2e/jest.config.js --verbose",
"test:e2e:limbo": "cross-env TEST_HUB_URL=http://fedir-hub.dev.liquidity.network/ RPC_URL=http://fedir-hub.dev.liquidity.network/ethrpc yarn test:e2e",
"test:stress": "jest --config specs/stress/jest.config.js --verbose",
"docs": "rm -rf docs && typedoc -options typedoc.js && ts-node scripts/processDocs.ts",
"docs:publish": "yarn docs && cd website && yarn install && yarn build && gh-pages -d build/nocust-client-library",
"docs:start": "yarn docs && cd website && yarn install && yarn build && yarn start",
"postinstall": "rm -f node_modules/web3/index.d.ts"
},
"keywords": [
"off-chain",
"blockchain",
"ethereum",
"scalability",
"nocust",
"liquidity",
"network",
"plasma",
"payment",
"commit-chain"
],
"contributors": [
"Rami Khalil <rami@liquidity.network>",
"Guillaume Felley <guillaume.felley@liquidity.network>",
"George Sedky <george.sedky@liquidity.network>"
],
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/liquidity-network/nocust-client-library/issues",
"homepage": "https://docs.liquidity.network"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src, specs}/**/*.{js,ts}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"async-mutex": "0.1.4",
"axios": "0.19.0",
"bignumber.js": "9.0.0",
"bip39": "3.0.2",
"ethereumjs-util": "6.2.0",
"ethereumjs-wallet": "0.6.3",
"hdkey": "1.1.1",
"json-bigint": "0.3.0",
"mobx": "4.15.0",
"ws": "7.2.0"
},
"devDependencies": {
"@babel/core": "7.7.2",
"@babel/plugin-proposal-class-properties": "7.7.0",
"@babel/plugin-proposal-decorators": "7.7.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.7.4",
"@babel/plugin-proposal-optional-chaining": "7.6.0",
"@babel/preset-env": "7.7.1",
"@babel/preset-typescript": "7.7.2",
"@hapi/joi": "16.1.8",
"@types/figlet": "1.2.0",
"@types/hapi__joi": "16.0.3",
"@types/inquirer": "6.5.0",
"@types/jest": "24.0.23",
"@types/node": "12.12.7",
"@types/ws": "6.0.3",
"@typescript-eslint/eslint-plugin": "2.8.0",
"@typescript-eslint/parser": "2.8.0",
"babel-jest": "24.9.0",
"chalk": "3.0.0",
"cross-env": "6.0.3",
"eslint": "6.6.0",
"eslint-config-liquidity": "0.1.3",
"eslint-config-prettier": "6.5.0",
"eslint-config-standard": "14.1.0",
"eslint-config-standard-react": "9.2.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "23.0.3",
"eslint-plugin-mocha": "6.2.1",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-standard": "4.0.1",
"figlet": "1.2.4",
"ghpages": "0.0.10",
"husky": "3.1.0",
"inquirer": "7.0.0",
"jest": "24.9.0",
"lint-staged": "9.4.3",
"node-persist": "3.0.5",
"prettier": "1.19.1",
"ts-loader": "6.2.1",
"ts-node": "8.5.2",
"typedoc": "0.15.0",
"typedoc-plugin-markdown": "2.2.11",
"typescript": "3.7.2",
"uglifyjs-webpack-plugin": "2.2.0",
"web3": "1.2.4",
"webpack": "4.41.6",
"webpack-cli": "3.3.11"
},
"peerDependencies": {
"web3": ">1.2.4"
}
}