-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
80 lines (80 loc) · 1.93 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "koa-safe-jsonp",
"version": "1.0.0",
"description": "Safe jsonp plugins for koa.",
"main": "index.js",
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git://github.com/koajs/koa-safe-jsonp.git",
"web": "https://github.com/koajs/koa-safe-jsonp"
},
"scripts": {
"lint": "xo",
"pretest": "npm run lint",
"test": "mocha --exit",
"precoverage": "rimraf .nyc_output coverage",
"coverage": "nyc npm run test",
"preci": "echo start CI ........",
"ci": "npm run coverage"
},
"keywords": [
"jsonp",
"safe-jsonp",
"koa"
],
"dependencies": {
"jsonp-body": "~1.0.0"
},
"devDependencies": {
"eslint-config-xo-lass": "^1.0.3",
"koa": "^2.12.0",
"koa-qs": "^3.0.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"xo": "^0.32.0"
},
"author": "fengmk2 <fengmk2@gmail.com> (http://fengmk2.com)",
"contributors": [
"dead_horse <heyiyu.deadhorse@gmail.com> (https://github.com/dead-horse)",
"3imed-jaberi <imed_jebari@hotmail.fr> (https://www.3imed-jaberi.com)",
"yongbo000 <yongbo.hello@gmail.com> (https://github.com/yongbo000)",
"coolme200 <tangyao@alibaba-inc.com> (http://coolme200.github.com)",
"yongbo000 <yongbo.hello@gmail.com>"
],
"license": "MIT",
"prettier": {
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"space": true,
"extends": [
"xo-lass"
],
"ignore": [
"test",
"examples"
],
"rules": {
"node/no-deprecated-api": "off",
"no-unused-vars": "off",
"no-prototype-builtins": "off",
"prefer-rest-params": "off"
}
},
"engines": {
"node": ">= 10"
},
"homepage": "https://github.com/koajs/koa-safe-jsonp",
"bugs": {
"url": "https://github.com/koajs/koa-safe-jsonp/issues",
"email": "fengmk2@gmail.com"
}
}