-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.52 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
{
"name": "koa-is-json",
"description": "Check if a koa body should be interpreted as JSON",
"version": "1.0.0",
"scripts": {
"lint": "eslint --fix .",
"test-only": "mocha",
"test": "npm run lint & npm run test-only",
"test-cov": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koajs/is-json.git"
},
"keywords": [
"json",
"is-json",
"koa"
],
"author": {
"name": "Jonathan Ong",
"email": "me@jongleberry.com",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"contributors": [
{
"name": "Haoxin",
"email": "haoxinst@gmail.com",
"url": "https://medium.com/@haoxin",
"twitter": "https://twitter.com/haoxins"
},
{
"name": "Imed Jaberi",
"email": "imed_jebari@hotmail.fr",
"url": "https://github.com/3imed-jaberi",
"twitter": "https://twitter.com/3imed_jaberi"
}
],
"license": "MIT",
"nyc": {
"reporter": [
"lcov",
"text-summary"
],
"report-dir": "./coverage"
},
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^10.0.0",
"nyc": "^15.0.0"
},
"engines": {
"node": ">= 8"
},
"bugs": {
"url": "https://github.com/koajs/is-json/issues"
},
"homepage": "https://github.com/koajs/is-json#readme"
}