-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "@open-rpc/mock-server",
"version": "0.0.0-semantic-release-dev",
"description": "Provides a mock JSON-RPC API given an OpenRPC Document",
"repository": {
"type": "git",
"url": "git+https://github.com/open-rpc/mock-server.git"
},
"author": "Zachary Belford<belfordz66@gmail.com>",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/open-rpc/mock-server/issues"
},
"homepage": "https://github.com/open-rpc/mock-server#readme",
"bin": {
"open-rpc-mock-server": "build/cli.js"
},
"files": [
"bin/*.js",
"build",
".node-version"
],
"scripts": {
"start": "npm run build && node ./build/cli.js",
"startaws": "npm run build && node ./build/cli.js -m service -p 8081",
"test": "npm run build && npm run test:unit",
"test:unit": "jest --coverage",
"build": "tsc && cp service-mode-openrpc.json build/.",
"watch:build": "tsc --watch",
"watch:test": "jest --watch",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@open-rpc/examples": "^1.7.2",
"@open-rpc/schema-utils-js": "^2.0.2",
"@open-rpc/server-js": "^1.9.5",
"commander": "^6.1.0",
"lodash": "^4.17.19"
},
"devDependencies": {
"@open-rpc/meta-schema": "1.14.9",
"@types/connect": "^3.4.38",
"@types/cors": "^2.8.17",
"@types/jest": "^29.5.12",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.17.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.17.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^4.9.5"
}
}