-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 933 Bytes
/
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
{
"name": "multi-lock-queue",
"version": "1.0.2",
"description": "optimally parallelize tasks that lock on potentially intersecting sets of ids",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test node test.js",
"lint": "eslint --quiet --ignore-path .gitignore .",
"prettier": "prettier --single-quote --write '**/*.js'",
"pre-commit": "npm run prettier && npm run lint",
"pre-push": "npm test"
},
"keywords": [
"queue",
"mutex",
"mutual-exclusion",
"locks",
"locking-queue"
],
"author": "mvayngrib",
"license": "MIT",
"devDependencies": {
"eslint": "~5.13.0",
"eslint-config-standard": "~12.0.0",
"eslint-plugin-import": "~2.16.0",
"eslint-plugin-node": "~8.0.1",
"eslint-plugin-promise": "~4.0.1",
"eslint-plugin-standard": "~4.0.0",
"husky": "~1.3.1",
"lint-staged": "~8.1.3",
"prettier": "~1.16.4",
"tape": "~4.9.2"
}
}