-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 740 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 740 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
{
"name": "svmq",
"version": "1.0.7",
"description": "Native System V message queues in Node.js",
"main": "index.js",
"scripts": {
"test": "jasmine spec/**/*.js",
"install": "node-gyp rebuild"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhead/node-svmq.git"
},
"keywords": [
"system",
"v",
"sysv",
"mq",
"message",
"queue",
"svmq",
"ipc"
],
"author": "Justin Head <jhead@jxh.io>",
"license": "MIT",
"gypfile": true,
"bugs": {
"url": "https://github.com/jhead/node-svmq/issues"
},
"homepage": "https://github.com/jhead/node-svmq#readme",
"dependencies": {
"nan": "^2.2.0"
},
"devDependencies": {
"jasmine": "^3.6.1"
}
}