-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "ems",
"version": "1.6.1",
"author": "Jace A Mogill <[email protected]>",
"description": "Persistent Shared Memory and Parallel Programming Model",
"contributors": [
{
"name": "Jace A Mogill",
"email": "[email protected]"
},
{
"name": "Aleksander Budzynowski",
"email": "[email protected]"
}
],
"scripts": {
"test": "cd Tests && rm -f EMSthreadStub.js && for test in `ls *js`; do node $test 8; err=$?; echo $test \": ERROR=\" $err; if [ $err -ne 0 ] ; then exit 1; fi; done",
"example": "cd Examples; node concurrent_Q_and_TM.js 8"
},
"main": "nodejs/ems.js",
"repository": {
"type": "git",
"url": "https://github.com/mogill/ems.git"
},
"homepage": "https://github.com/mogill/ems.git",
"keywords": [
"non volatile memory",
"NVM",
"NVMe",
"multithreading",
"multithreaded",
"parallel",
"parallelism",
"concurrency",
"shared memory",
"multicore",
"manycore",
"transactional memory",
"TM",
"persistent memory",
"pmem",
"Extended Memory Semantics",
"EMS"
],
"license": "BSD-3-Clause",
"engines": {
"node": ">=4.0"
},
"dependencies": {
"bindings": "^1.3.0",
"node-addon-api": "*"
}
}