-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 764 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 764 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
{
"name": "rwlock",
"version": "5.0.0",
"description": "A read/write lock implementation for Node.",
"homepage": "http://71104.github.io/rwlock",
"bugs": "https://github.com/71104/rwlock/issues",
"license": "MIT",
"author": "Alberto La Rocca <a71104@gmail.com>",
"contributors": [
"Alberto La Rocca <a71104@gmail.com>",
"Christian Lerrahn <git@penpal4u.net>"
],
"files": [
"lib",
"LICENSE",
"README.md"
],
"main": "lib/lock.js",
"repository": {
"type": "git",
"url": "https://github.com/71104/rwlock.git"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-jshint": "~0.7.2",
"grunt-contrib-uglify": "~0.2.7",
"grunt-contrib-yuidoc": "~0.5.0",
"grunt-contrib-nodeunit": "~0.2.2"
}
}