-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
38 lines (38 loc) · 1011 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
{
"name": "open-rpc-spec",
"version": "1.3.2",
"description": "The OPEN-RPC Specification",
"main": "index.js",
"private": true,
"scripts": {
"validate": "node_modules/.bin/mdv ./spec.md ./README.md ./build/markdown/*.md",
"lint": "./node_modules/.bin/markdownlint ./spec.md ./README.md ./build/markdown/*.md",
"build": "./bin/build.sh",
"test": "npm run build && npm run validate && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-rpc/spec.git"
},
"keywords": [
"open-rpc",
"rpc",
"json-rpc",
"api",
"spec"
],
"author": "Zachary Belford",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/open-rpc/spec/issues"
},
"homepage": "https://github.com/open-rpc/spec#readme",
"devDependencies": {
"@etclabscore/dl-github-releases": "^1.2.1",
"fs-extra": "^9.1.0",
"markdown-toc": "^1.2.0",
"markdownlint-cli": "^0.39.0",
"mdv": "^1.3.2",
"mkdirp": "^1.0.4"
}
}