-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
40 lines (40 loc) · 1.34 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
{
"name": "eth-provider",
"version": "0.13.7",
"description": "A Universal Ethereum Provider",
"browser": "browser.js",
"main": "node.js",
"types": "./index.d.ts",
"scripts": {
"test": "standard --fix && npm run test:web3:v0 && npm run test:web3:v1 && npm run test:endpoints && npm run test:eip1193 && npm run test:frame",
"test:web3": "npm run test:web3:v0 && npm run test:web3:latest",
"test:web3:v0": "npm install [email protected] --no-save && mocha test/web3-v0.x.js",
"test:web3:v1": "npm install [email protected] --no-save && mocha test/web3-v1.x.js",
"test:web3:latest": "npm install web3@latest --no-save && mocha test/web3-v1.x.js",
"test:frame": "npm install [email protected] --no-save && mocha test/frame.js",
"test:endpoints": "mocha test/endpoints.js",
"test:eip1193": "mocha test/eip1193.js",
"test:ipc": "mocha test/ipc.js",
"test:all": "mocha",
"prepublishOnly": "npm run test"
},
"author": {
"name": "Jordan Muir",
"email": "[email protected]",
"url": "https://frame.sh"
},
"license": "GPL-3.0",
"repository": "github:floating/eth-provider",
"dependencies": {
"ethereum-provider": "0.7.7",
"events": "3.3.0",
"oboe": "2.1.5",
"uuid": "9.0.0",
"ws": "8.9.0",
"xhr2-cookies": "1.1.0"
},
"devDependencies": {
"mocha": "10.0.0",
"standard": "17.0.0"
}
}