-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
55 lines (55 loc) · 1.2 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "shared-memory-disruptor",
"description": "Shared memory LMAX Disruptor",
"version": "4.2.1",
"homepage": "https://github.com/davedoesdev/shared-memory-disruptor",
"author": {
"name": "David Halls",
"email": "[email protected]",
"url": "http://www.davedoesdev.com"
},
"repository": {
"type": "git",
"url": "https://github.com/davedoesdev/shared-memory-disruptor.git"
},
"bugs": {
"url": "https://github.com/davedoesdev/shared-memory-disruptor/issues"
},
"license": "MIT",
"main": "lib/disruptor.js",
"scripts": {
"test": "grunt lint test",
"coverage": "grunt coverage"
},
"directories": {
"lib": "lib",
"test": "test"
},
"keywords": [
"shared memory",
"LMAX Disruptor"
],
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^7.1.0"
},
"devDependencies": {
"async": "^3.2.5",
"c8": "^9.1.0",
"chai": "^5.0.0",
"documentation": "^14.0.2",
"grunt": "^1.6.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-exec": "^3.0.0",
"grunt-mocha-test": "^0.13.3",
"mocha": "^10.2.0",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=16"
},
"os": [
"linux",
"darwin"
]
}