-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.23 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
{
"name": "flexlock",
"version": "1.2.1",
"description": "A locking library like [`mutexify`](https://github.com/mafintosh/mutexify), [`mutex-js`](https://github.com/danielglennross/mutex-js), [`await-lock`](https://www.npmjs.com/package/await-lock), and [many more](https://www.npmjs.com/search?q=promise+lock), but with more flexibility in how to use it to be both sturdier and more practical.",
"main": "index.js",
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:lint": "standard",
"test:unit": "tap test/*.js",
"test:ci": "npm run test:lint && npm run test:unit -- --cov --coverage-report=lcov",
"release": "standard-version"
},
"keywords": [
"promise",
"lock",
"async"
],
"author": "Martin Heidegger <[email protected]>",
"license": "MIT",
"devDependencies": {
"standard": "^12.0.1",
"standard-version": "^4.4.0",
"tap": "^12.1.1"
},
"directories": {
"test": "test"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/martinheidegger/flexlock.git"
},
"bugs": {
"url": "https://github.com/martinheidegger/flexlock/issues"
},
"homepage": "https://github.com/martinheidegger/flexlock#readme"
}