-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.46 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "koa-jayson-rpc",
"version": "0.0.1",
"description": "koa json rpc powered by jayson",
"main": "lib/index.js",
"files": [
"lib",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"test": "mocha",
"test-cover": "nyc --reporter=lcov --reporter=text mocha",
"report-cover": "codecov"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/magicdawn/koa-jayson-rpc.git"
},
"keywords": [
"jayson",
"rpc",
"koa",
"json-rpc"
],
"author": "magicdawn",
"license": "MIT",
"bugs": {
"url": "https://github.com/magicdawn/koa-jayson-rpc/issues"
},
"homepage": "https://github.com/magicdawn/koa-jayson-rpc#readme",
"dependencies": {
"jayson": "^3.0.2",
"lodash": "^4.17.11",
"require-directory": "^2.1.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"codecov": "^3.3.0",
"eslint": "^5.16.0",
"eslint-plugin-magicdawn": "^0.0.5",
"husky": "latest",
"impress-router": "^1.6.0",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-mount": "^4.0.0",
"koa-onerror": "^4.1.0",
"koa-qs": "^2.0.0",
"lint-staged": "latest",
"mocha": "^6.1.4",
"nyc": "^14.0.0",
"prettier": "latest",
"should": "^13.2.3",
"supertest": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,less,vue}": [
"prettier --write",
"git add"
]
}
}