-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "runkoa",
"version": "1.5.6",
"description": "run koa in any flow control(context, generator, async)",
"main": "index.js",
"scripts": {
"test": "RUNKOA_TEST=1 mocha -u bdd --compilers js:babel-core/register",
"nodemon": "cd test && ../node_modules/.bin/nodemon test.js",
"pub": "npm publish ."
},
"preferGlobal": "true",
"bin": {
"runkoa": "bin/runkoa.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/17koa/runkoa.git"
},
"author": "i5ting",
"license": "MIT",
"bugs": {
"url": "https://github.com/17koa/runkoa/issues"
},
"engines": {
"node": ">= 4"
},
"homepage": "https://github.com/17koa/runkoa#readme",
"dependencies": {
"babel-core": "^6.7.5",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.4",
"babel-polyfill": "^6.1.4",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-stage-3": "^6.5.0",
"debug": "2.2.0"
},
"devDependencies": {
"co": "^4.6.0",
"coffee": "^3.2.1",
"koa": "^2.0.0",
"mocha": "^2.4.5",
"nodemon": "^1.9.1",
"request": "^2.71.0",
"should": "^8.3.0",
"supertest": "^1.2.0"
}
}