forked from Wizcorp/locks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 710 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 710 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
{
"name": "locks",
"version": "0.2.2",
"description": "Mutex locks, Read/Write locks, Condition variables and Semaphores",
"keywords": [
"locks",
"mutex",
"semaphore",
"condition",
"rwlock",
"synchronize",
"synchronise",
"synchronization",
"synchronisation"
],
"main": "index.js",
"scripts": {
"test": "tape test/*.js | tap-spec",
"cover": "rm -rf .nyc_output && nyc --silent --all tape test/*.js > /dev/null 2>&1 && nyc report"
},
"repository": "https://github.com/Wizcorp/locks",
"author": "Ron Korving <rkorving@wizcorp.jp>",
"license": "MIT",
"devDependencies": {
"nyc": "^3.2.2",
"tap-spec": "^4.1.0",
"tape": "^4.2.2"
}
}