-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 805 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 805 Bytes
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
{
"name": "koa-jsonapi-middleware",
"version": "0.1.1",
"description": "A Koa.js middleware for adding spec-compliant JSON-API content negotiation",
"main": "index.js",
"scripts": {
"prepublish": "npm run transpile",
"transpile": "babel --no-comments --blacklist regenerator,es6.forOf src/middleware.js --out-file index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cbankester/koa-jsonapi-middleware.git"
},
"keywords": [
"json-api",
"koa"
],
"author": "Christian Bankester <cbankester@immense.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cbankester/koa-jsonapi-middleware/issues"
},
"homepage": "https://github.com/cbankester/koa-jsonapi-middleware#readme",
"devDependencies": {
"babel": "5.x"
}
}