forked from MetaMask/nonce-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "ethers-nonce-tracker",
"version": "1.2.0",
"description": "Transaction nonce calculation used in MetaMask.",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf ./dist && tsc --project .",
"test": "yarn build && mocha test/nonce-tracker-test.js",
"lint": "eslint . --ext ts,js,json",
"lint:fix": "yarn lint --fix"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:sambacha/nonce-tracker.git"
},
"keywords": [
"ethereum"
],
"author": "",
"license": "ISC",
"dependencies": {
"assert": "^1.4.1",
"@vwt12eh8/await-semaphore": "1.0.0",
"ethjs-query": "^0.3.8"
},
"devDependencies": {
"@metamask/eslint-config": "^4.1.0",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-node": "^11.1.0",
"eth-block-tracker": "^4.4.3",
"ethereumjs-util": "^6.1.0",
"mocha": "^8.2.1",
"typescript": "^4.0.5",
"xtend": "^4.0.1"
}
}