-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.29 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
55
56
57
{
"name": "@koalex/koa-json-rpc",
"version": "1.0.3",
"description": "JSON-RPC 2.0 middleware for Koa.js which implements the https://www.jsonrpc.org/specification",
"main": "index.js",
"scripts": {
"test": "mocha \"./test/*.js\" --recursive --exit",
"check-updates": "ncu",
"check-updates:upgrade": "ncu -u",
"audit": "npm audit --audit-level high"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/koalex/koa-json-rpc.git"
},
"bugs": {
"url": "https://github.com/koalex/koa-json-rpc/issues"
},
"keywords": [
"koa",
"json-rpc"
],
"contributors": [
{
"name": "Konstantin Aleksandrov",
"email": "alexandrovkm@gmail.com",
"url": "https://github.com/koalex"
}
],
"homepage": "https://github.com/koalex/koa-json-rpc#readme",
"engines": {
"node": ">=8.1.4"
},
"dependencies": {
"debug": "^4.1.1",
"koa-compose": "^4.1.0"
},
"devDependencies": {
"husky": "^3.1.0",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"mocha": "^6.2.2",
"npm-check-updates": "^3.2.2",
"supertest": "^4.0.2"
},
"directories": {
"lib": "lib",
"test": "test"
}
}