-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 950 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
35
36
37
38
39
40
41
42
43
44
{
"name": "web-mutex",
"version": "1.0.1",
"description": "Web worker and worker thread mutex implementation",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"lint": "tslint -p ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KromDaniel/web-mutex.git"
},
"keywords": [
"mutex",
"web-worker",
"worker-threads",
"threads",
"atomics",
"mutex",
"lock",
"read-writer"
],
"author": "Daniel Krom",
"license": "MIT",
"bugs": {
"url": "https://github.com/KromDaniel/web-mutex/issues"
},
"homepage": "https://github.com/KromDaniel/web-mutex#readme",
"devDependencies": {
"@types/jest": "^23.3.10",
"husky": "^1.3.0",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test && npm run lint"
}
}
}