-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 808 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 808 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
28
29
30
31
32
{
"name": "asyncflow-gen",
"version": "0.0.2",
"description": "Asynchronous control flow with generators",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrm8448/asyncflow.git"
},
"keywords": [
"async",
"flow",
"Asynchronous",
"callbacks"
],
"author": "Manuel Romero",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrm8448/asyncflow/issues"
},
"homepage": "https://github.com/mrm8448/asyncflow#readme",
"devDependencies": {
"chai": "^4.1.1",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^7.0.1"
}
}