-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.65 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
{
"name": "simple-web3-provider",
"version": "0.0.6",
"description": "A web3 provider with retries under the hood",
"main": "lib/simple-web3-provider.js",
"source": "src/index.ts",
"exports": "./lib/simple-web3-provider.modern.js",
"module": "lib/simple-web3-provider.module.js",
"unpkg": "lib/simple-web3-provider.umd.js",
"typings": "lib/index.d.ts",
"scripts": {
"start": "microbundle watch",
"build": "microbundle",
"prepare": "husky install && npm run build",
"pretest": "npm run lint && tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --cache --fix",
"size": "size-limit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeriontech/web3-provider.git"
},
"keywords": [
"web3",
"web3-provider",
"retries",
"ethereum"
],
"author": "everdimension",
"license": "MIT",
"bugs": {
"url": "https://github.com/zeriontech/web3-provider/issues"
},
"homepage": "https://github.com/zeriontech/web3-provider#readme",
"dependencies": {
"ky": "^0.28.5"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^4.10.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"microbundle": "^0.13.0",
"prettier": "^2.2.1",
"size-limit": "^4.10.2",
"typescript": "^4.2.4"
},
"lint-staged": {
"*.{js,ts,md}": "prettier --write",
"*.{js,ts}": "eslint --cache --fix"
},
"size-limit": [
{
"path": "lib/simple-web3-provider.js"
}
]
}