forked from xf00f/web3x
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.54 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.54 KB
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
{
"name": "web3x",
"version": "3.0.4",
"license": "LGPL-3.0",
"description": "Typescript port of web3.js",
"repository": {
"type": "git",
"url": "https://github.com/xf00f/web3x.git"
},
"homepage": "https://github.com/xf00f/web3x",
"bugs": {
"url": "https://github.com/xf00f/web3x/issues"
},
"keywords": [
"Ethereum",
"TypeScript",
"API",
"Web3"
],
"contributors": [
{
"name": "xf00f",
"email": "xf00f@protonmail.com",
"url": "https://github.com/xf00f"
}
],
"main": "./index.js",
"types": "./index.d.ts",
"sideEffects": false,
"scripts": {
"build": "yarn clean && tsc -p tsconfig.cjs.json && tsc -p tsconfig.es.json && node ./package.js",
"lint": "tslint --project tsconfig.json 'src/**/*.ts' --fix",
"test": "jest",
"cover": "jest --coverage && cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js",
"clean": "rm -rf ./dest ./dest-es",
"deploy": "yarn jest --clearCache && yarn cover && yarn build && npm publish dest && npm publish dest-es",
"patch_version": "yarn version --patch"
},
"bin": {
"web3x-codegen": "./codegen/index.js"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": ".*\\.test\\.(tsx?|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"reporters": [
"jest-dot-reporter"
],
"rootDir": "./src",
"coverageDirectory": "../coverage",
"coveragePathIgnorePatterns": [
"./src/eth-lib",
"./src/ethers"
]
},
"dependencies": {
"@types/bn.js": "^4.11.2",
"@types/node": "^10.12.18",
"@types/ws": "^6.0.1",
"bigint-buffer": "^1.1.2",
"bip39": "^2.5.0",
"bn.js": "^4.11.8",
"browserify-aes": "^1.2.0",
"elliptic": "^6.4.0",
"fs-extra": "^7.0.1",
"got": "^9.3.0",
"hdkey": "^1.1.0",
"idna-uts46-hx": "^2.3.1",
"isomorphic-ws": "^4.0.1",
"level-js": "^4.0.0",
"levelup": "^4.0.0",
"merkle-patricia-tree": "^3.0.0",
"node-http-xhr": "^1.3.4",
"pbkdf2": "^3.0.17",
"randombytes": "^2.0.6",
"swarm-js": "^0.1.39",
"tslib": "^1.9.3",
"utf8": "^3.0.0",
"ws": "^6.1.0"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/utf8": "^2.1.6",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"jest-dot-reporter": "^1.0.7",
"memdown": "^3.0.0",
"ts-jest": "^23.10.1",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2"
}
}