-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·54 lines (54 loc) · 1009 Bytes
/
package.json
File metadata and controls
executable file
·54 lines (54 loc) · 1009 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"preferGlobal": false,
"name": "npool",
"version": "1.4.7",
"main": "./build/Release/npool.node",
"description": "A cross-platform thread pool add-on for Node.js and io.js",
"keywords": [
"c",
"c++",
"addon",
"module",
"pthread",
"native",
"async",
"thread",
"threadpool",
"thread pool",
"unit of work",
"task"
],
"author": {
"name": "Ivan Hall",
"email": "ivan.hall@gmail.com"
},
"homepage": "https://github.com/inh3/nPool",
"repository": {
"type": "git",
"url": "https://github.com/inh3/nPool"
},
"bugs": {
"url": "https://github.com/inh3/nPool/issues",
"email": "ivan.hall@gmail.com"
},
"analyze": false,
"license": "BSD-3-Clause",
"os": [
"darwin",
"linux",
"win32"
],
"engines": {
"node": ">= 0.8.28"
},
"engine-strict": true,
"devDependencies": {
"mocha": ">= 1.14.0"
},
"scripts": {
"test": "make test"
},
"dependencies": {
"nan": ">= 2.1.0"
}
}