-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 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
{
"name": "@vegaprotocol/openrpc-md",
"version": "1.2.6",
"description": "Generate a single markdown from a simplistic openrpc doc",
"type": "module",
"main": "src/index.js",
"bin": {
"openrpc-md": "src/index.js"
},
"scripts": {
"setup": "husky install",
"test": "tape src/**/*.test.js | tap-arc",
"lint": "standard src/**/*.js",
"fetch-sample": "curl 'https://raw.githubusercontent.com/vegaprotocol/vega/develop/wallet/api/openrpc.json' -s -o ./sample/openrpc.json",
"generate-sample": "node src/index.js ./sample/openrpc.json 'OpenRPC Wallet API' > ./sample/output.md"
},
"keywords": [
"open-rpc"
],
"author": "Edd <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/vegaprotocol/openrpc-md.git"
},
"bugs": {
"url": "https://github.com/vegaprotocol/openrpc-md/issues"
},
"homepage": "https://github.com/vegaprotocol/openrpc-md#readme",
"license": "MIT",
"devDependencies": {
"husky": "^9.0.10",
"standard": "^17.1.0",
"tap-arc": "^1.2.2",
"tape": "^5.6.0"
},
"dependencies": {
"@open-rpc/schema-utils-js": "^2.0.2"
}
}