-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1 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
{
"name": "rw-resource",
"version": "1.0.5",
"description": "A simple helper to protect access to a resource across async operations",
"main": "index.js",
"scripts": {
"prepare": "tsc",
"test": "mocha -r ts-node/register test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/netmail-open/rw-resource.git"
},
"keywords": [
"node",
"lock",
"resource",
"rwlock"
],
"author": "Micah N Gorrell",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/netmail-open/rw-resource/issues"
},
"homepage": "https://github.com/netmail-open/rw-resource#readme",
"devDependencies": {
"mocha": "^5.2.0",
"ts-node": "^7.0.0",
"typescript": "^2.5.3",
"debug": "^2.3.3",
"chai": "^4.1.2",
"@types/debug": "0.0.29",
"@types/node": "^10.5.2",
"@types/mocha": "^5.2.1"
},
"typescript": {
"definition": "package.d.ts"
},
"files": [
"index.js"
],
"dependencies": {
"minimist": "^1.2.6"
}
}