forked from vkurchatkin/deasync
-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
36 lines (36 loc) · 819 Bytes
/
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
{
"name": "deasync",
"version": "0.1.30",
"description": "Turns async function into sync via JavaScript wrapper of Node event loop",
"main": "index.js",
"author": "Vladimir Kurchatkin <[email protected]>",
"contributors": [
"Fred Wen <[email protected]> (https://github.com/abbr)"
],
"license": "MIT",
"scripts": {
"install": "node ./build.js",
"test": "node spec"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^1.7.1"
},
"repository": {
"type": "git",
"url": "https://github.com/abbr/deasync.git"
},
"homepage": "https://github.com/abbr/deasync",
"keywords": [
"async",
"sync",
"sleep",
"async wrapper"
],
"engines": {
"node": ">=0.11.0"
},
"devDependencies": {
"require-directory": "^2.1.1"
}
}