-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "json-grpc-server",
"version": "1.1.0",
"description": "Get a full fake GRPC API with zero coding in less than 30 seconds 🤡",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "npx mocha --recursive test/**/*.spec.js",
"cover": "npx nyc npm test",
"lint": "npx eslint src/**/*.js --cache --fix"
},
"keywords": [
"grpc",
"mock",
"json"
],
"author": "lanhao",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "npm run lint & npm test"
}
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"chai": "^4.3.3",
"dts-gen": "^0.6.0",
"eslint": "^7.21.0",
"husky": "^5.1.3",
"mocha": "^8.3.0",
"nyc": "^15.1.0"
},
"dependencies": {
"@grpc/proto-loader": "^0.5.6",
"@gvarga2/grpc-mock": "^0.7.0",
"grpc": "^1.24.5",
"grpc-mock": "^0.7.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevXiaolan/json-grpc-server.git"
},
"bugs": {
"url": "https://github.com/DevXiaolan/json-grpc-server/issues"
},
"homepage": "https://github.com/DevXiaolan/json-grpc-server#readme"
}