-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "koa-response-jsonp",
"version": "3.0.0",
"description": "koa jsonp middleware",
"main": "lib/jsonp.js",
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:lint": "elint lint \"lib/**/*.js\" \"test/**/*.js\" defaultConfig.js index.js --fix",
"test:unit": "nyc --reporter=html --reporter=text mocha \"test/**/*.spec.js\"",
"test:coverage": "nyc report --reporter=lcovonly",
"beforecommit": "elint lint commit && npm run test:lint"
},
"repository": "git+https://github.com/keenwon/koa-response-jsonp.git",
"files": [
"lib",
"README.md"
],
"keywords": [
"koa",
"jsonp",
"middleware",
"node"
],
"author": "keenwon <semanwmj@yeah.net>",
"license": "MIT",
"engines": {
"node": ">=8"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"elint": "^2.0.0-alpha.3",
"elint-preset-kw": "^1.9.0",
"get-port": "^5.1.1",
"koa": "^2.13.0",
"mocha": "^7.2.0",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0"
},
"dependencies": {
"debug": "^4.2.0"
},
"peerDependencies": {
"koa": "^2"
},
"bugs": {
"url": "https://github.com/keenwon/koa-response-jsonp/issues"
},
"homepage": "https://github.com/keenwon/koa-response-jsonp#readme"
}