-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
37 lines (37 loc) · 1.14 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
{
"name": "@rsksmart/mock-web3-provider",
"version": "1.0.2-beta1",
"main": "dist/index.js",
"repository": "[email protected]:jessgusclark/mock-web3-provider.git",
"author": "Jesse Clark <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"dist"
],
"scripts": {
"build": "npx tsc --outDir ./dist",
"build:watch": "npx tsc -w --outDir ./dist",
"lint": "npx eslint ./src/*.ts",
"lint:fix": "npx eslint ./src/*.ts --fix",
"test": "npx jest",
"test:ci": "npx jest --verbose --coverage --watchAll=false --coverageDirectory reports --maxWorkers=2",
"test:watch": "npx jest --watch",
"prepublish": "npm run build"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
},
"dependencies": {
"@metamask/eth-sig-util": "^4.0.1"
}
}