-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
3,066 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
language: node_js | ||
node_js: | ||
- "4" | ||
- "5" | ||
- "14" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,36 @@ | ||
{ | ||
"name": "koa-jsonp", | ||
"version": "2.0.2", | ||
"description": "JSONP middleware with GET/POST support for koajs", | ||
"name": "@hitokoto/koa-jsonp", | ||
"version": "3.0.0", | ||
"description": "JSONP middleware with GET/POST support for koajs. Support iconv.", | ||
"main": "index.js", | ||
"scripts": { | ||
"build": "$(npm bin)/babel lib --out-dir dist", | ||
"prepublish": "npm run build", | ||
"test": "NODE_ENV=test npm run build && $(npm bin)/mocha test/*.test.js --require babel-core/register --reporter spec" | ||
"test": "NODE_ENV=test $(npm bin)/mocha test/*.test.js --reporter spec" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:kilianc/koa-jsonp.git" | ||
"url": "[email protected]:hitokoto-osc/koa-jsonp-with-iconv.git" | ||
}, | ||
"keywords": [ | ||
"koa", | ||
"koajs", | ||
"jsonp", | ||
"json-streaming" | ||
], | ||
"author": "Kilian Ciuffolo <[email protected]>", | ||
"author": "a632079 <[email protected]>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/kilianc/koa-jsonp/issues" | ||
"url": "https://github.com/hitokoto-osc/koa-jsonp-with-iconv/issues" | ||
}, | ||
"homepage": "https://github.com/kilianc/koa-jsonp", | ||
"homepage": "https://github.com/hitokoto-osc/koa-jsonp-with-iconv/koa-jsonp", | ||
"devDependencies": { | ||
"JSONStream": "^1.0.7", | ||
"babel": "^6.3.13", | ||
"babel-cli": "^6.3.17", | ||
"babel-core": "^6.3.21", | ||
"babel-eslint": "^4.1.6", | ||
"babel-plugin-transform-async-to-generator": "^6.3.13", | ||
"babel-preset-stage-3": "^6.3.13", | ||
"chai": "^3.4.1", | ||
"json-array-stream": "^0.1.2", | ||
"koa": "^2.0.0-alpha.3", | ||
"koa-mount": "koajs/mount#next", | ||
"koa-mount": "^4.0.0", | ||
"mocha": "^2.3.4", | ||
"mocha-standard": "^1.0.0", | ||
"request": "^2.67.0", | ||
"standard": "^5.4.1" | ||
}, | ||
"standard": { | ||
"parser": "babel-eslint", | ||
"globals": [ | ||
"before", | ||
"describe", | ||
"it" | ||
] | ||
} | ||
} |
Oops, something went wrong.