-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
73 lines (73 loc) · 1.75 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
{
"name": "eth-connect",
"version": "6.0.0",
"private": true,
"description": "Ethereum TypeScript API, middleware to talk to a ethereum node using an async provider",
"decentralandLibrary": {},
"repository": {
"type": "git",
"url": "git+https://github.com/decentraland/eth-connect.git"
},
"homepage": "https://github.com/decentraland/eth-connect",
"bugs": "https://github.com/decentraland/eth-connect/issues",
"scripts": {
"lint:check": "eslint '**/*.{js,ts}'",
"lint:fix": "eslint '**/*.{js,ts}' --fix",
"test": "jest --forceExit --coverage --verbose --testTimeout=60000"
},
"keywords": [
"ethereum",
"typescript",
"web3",
"json-rpc",
"eth",
"API"
],
"license": "LGPL-3.0",
"files": [
"dist"
],
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120,
"trailingComma": "none"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"**/dist/**",
"**/test/**"
],
"reporter": [
"html",
"text"
],
"all": true
},
"devDependencies": {
"@dcl/eslint-config": "^1.1.13",
"@microsoft/api-documenter": "^7.22.30",
"@microsoft/api-extractor": "^7.36.3",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/node-fetch": "^2.6.4",
"@well-known-components/test-helpers": "^1.5.3",
"bignumber.js": "^9.1.1",
"fp-future": "^1.0.1",
"ganache": "^7.9.0",
"isomorphic-fetch": "^3.0.0",
"js-sha3": "^0.8.0",
"rollup": "^3.27.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.1",
"typescript": "^5.1.6",
"websocket": "^1.0.33"
}
}