-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "@open-rpc/examples",
"version": "0.0.0-semantic-dev",
"description": "Collection of example OpenRPC service definition files",
"main": "build/src/index.js",
"scripts": {
"build": "tsc",
"test": "npm run build && jest",
"publish": "npm run test && npm run build",
"test:watch": "npm run test -- --watch",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-rpc/examples.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/open-rpc/examples/issues"
},
"homepage": "https://spec.open-rpc.org",
"files": [
"build",
"!build/**/*.test.*"
],
"dependencies": {},
"devDependencies": {
"@open-rpc/meta-schema": "^1.14.9",
"@open-rpc/schema-utils-js": "^2.0.2",
"@types/jest": "^29.5.12",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.17.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^4.9.5"
},
"keywords": [
"open-rpc",
"OpenRPC",
"openrpc",
"JSON schema",
"JSON RPC",
"API"
]
}