-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "micro-koa",
"version": "0.2.4",
"description": "Creating microservices with koa inspired by zeit/micro",
"main": "lib/index.js",
"files": [
"bin",
"lib",
"src"
],
"repository": "https://github.com/chentsulin/micro-koa",
"author": "C.T. Lin <chentsulin@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-env": "^1.1.8",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"jest": "^18.1.0",
"rimraf": "^2.5.4"
},
"dependencies": {
"async-to-gen": "^1.3.0",
"babel-runtime": "^6.20.0",
"is-async-supported": "^1.2.0",
"koa": "^2.0.0",
"koa-bodyparser": "^3.2.0",
"minimist": "^1.2.0"
},
"scripts": {
"build": "npm run clean && babel -d babel src -d lib --ignore __tests__,__mocks__ --copy-files",
"clean": "rimraf lib",
"prepublish": "npm run build"
},
"bin": {
"micro-koa": "./bin/micro-koa"
}
}