-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
43 lines (43 loc) · 930 Bytes
/
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
{
"name": "ethereum-provider",
"version": "0.7.8",
"description": "A standalone EthereumProvider class, just supply the connection",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"test": "standard --fix && mocha --require @babel/register",
"prepublishOnly": "npm run build"
},
"author": {
"name": "Frame Labs",
"email": "[email protected]",
"url": "https://frame.sh"
},
"license": "GPL-3.0",
"devDependencies": {
"@babel/preset-env": "7.19.1",
"@babel/register": "7.18.9",
"@tsconfig/node16": "1.0.3",
"@types/node": "18.7.18",
"mocha": "10.0.0",
"standard": "17.0.0",
"ts-node": "10.9.1",
"typescript": "4.8.3"
},
"dependencies": {
"events": "3.3.0"
},
"mocha": {
"timeout": 100,
"require": "test/hooks.js"
},
"standard": {
"env": [
"mocha"
]
}
}