-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1 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
{
"name": "f-promise",
"version": "2.0.8",
"license": "MIT",
"description": "Promise-oriented coroutines for node.js",
"author": {
"name": "Bruno Jouhier",
"email": "[email protected]"
},
"main": "build/index.js",
"typings": "build/index.d.ts",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"fibers": "^5.0.0"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^5.2.4",
"@types/mz": "0.0.32",
"@types/node": "^8.10.34",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"mz": "^2.7.0",
"tslint": "^5.18.0",
"typescript": "^2.9.2"
},
"keywords": [
"fibers",
"coroutine",
"async",
"promise"
],
"repository": {
"type": "git",
"url": "git://github.com/Sage/f-promise.git"
},
"scripts": {
"prepare": "rm -rf build && tsc && tsc --target ES2015 --module commonjs --outDir build examples/disk-usage-async-await.ts",
"test": "mocha build/test",
"lint": "tslint -e 'node_modules/**' -p ."
}
}