-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "web3-plugin-template",
"version": "1.0.0",
"description": "Template plugin to extend web3.js with additional methods",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/web3/web3.js-plugin-template#readme",
"bugs": {
"url": "https://github.com/web3/web3.js-plugin-template/issues"
},
"scripts": {
"lint": "eslint '{src,test}/**/*.ts'",
"build": "tsc --project tsconfig.build.json",
"test": "jest --config=./test/jest.config.js"
},
"contributors": [
"ChainSafe <info@chainsafe.io>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:web3/web3.js-plugin-template.git"
},
"dependencies": {
},
"devDependencies": {
"@chainsafe/eslint-config": "^2.0.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.2.6",
"eslint": "8",
"jest": "^29.5.0",
"jest-extended": "^4.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"web3": "^4.2.2"
},
"peerDependencies": {
"web3": ">= 4.0.3"
}
}