-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 895 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 895 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "lockify",
"version": "2.0.0",
"description": "If your async function shouldn't run concurrently, lockify it!",
"scripts": {
"test": "teenytest"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/testdouble/lockify.git"
},
"keywords": [
"async",
"concurrency",
"lock",
"promise"
],
"author": "Neal Lindsay <neal.lindsay@gmail.com>",
"license": "ISC",
"main": "index.js",
"bugs": {
"url": "https://github.com/testdouble/lockify/issues"
},
"homepage": "https://github.com/testdouble/lockify",
"devDependencies": {
"teenytest": "^6.0.5",
"teenytest-promise": "^1.0.0"
},
"teenytest": {
"plugins": [
"teenytest-promise"
]
},
"files": [
"README.md",
"index.d.ts",
"index.js",
"lib/lockify.js",
"package.json"
],
"type": "module",
"types": "index.d.ts"
}