-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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
{
"name": "cofy",
"version": "2.0.2",
"description": "Cofy is a bridge connecting callback style object to sequential style in co environment with one punch.",
"main": "index.js",
"scripts": {
"test": "mocha --recursive -R spec --require should --harmony test/ --bail",
"test-cov": "node --harmony node_modules/istanbul-harmony/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -u exports --require should --recursive test/ --bail",
"test-travis": "node --harmony node_modules/istanbul-harmony/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -u exports --require should --recursive test/ --bail"
},
"repository": {
"type": "git",
"url": "https://github.com/RocksonZeta/cofy.git"
},
"keywords": [
"cofy",
"co",
"koa",
"async",
"flow",
"generator",
"coro",
"coroutine"
],
"license": "MIT",
"devDependencies": {
"co": "*",
"should": "*",
"mocha": "*",
"coveralls": "*",
"mocha-lcov-reporter": "*",
"istanbul-harmony": "*"
},
"engines": {
"node": ">= 0.11.9"
}
}