-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.99 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@coinbase/staking-client-library-ts",
"version": "0.9.0",
"description": "Coinbase Staking API Typescript Library",
"repository": "https://github.com/coinbase/staking-client-library-ts.git",
"license": "Apache-2.0",
"scripts": {
"clean": "rimraf ./dist",
"gen": "npm run clean-gen && ./scripts/generate-client.sh",
"clean-gen": "rm -rf src/gen/*",
"build": "npm run clean && tsc",
"prepare": "npm run build",
"test": "nyc mocha --require ts-node/register 'src/**/*.test.ts'",
"coverage": "nyc report --reporter=text-lcov && open coverage/index.html",
"lint": "eslint . --ext .ts --ignore-pattern 'dist/**/*' --ignore-pattern 'src/gen/**/*'",
"lint-fix": "eslint . --ext .ts --fix --ignore-pattern 'dist/**/*' --ignore-pattern 'src/gen/**/*'"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"src/",
"dist/"
],
"dependencies": {
"@solana/web3.js": "^1.91.3",
"bs58": "^5.0.0",
"node-jose": "^2.2.0"
},
"devDependencies": {
"@ethereumjs/tx": "^5.4.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^20.11.0",
"@types/node-jose": "^1.1.10",
"@types/proxyquire": "^1.3.31",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"chai": "^5.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-filename-rules": "^1.3.1",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^51.0.1",
"ethereumjs-util": "^7.1.5",
"mocha": "^11.0.1",
"nyc": "^17.1.0",
"prettier": "^3.0.3",
"prettier-eslint": "^16.0.0",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.2",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"main": "dist/index.js",
"types": "dist/index.d.ts"
}