-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
67 lines (67 loc) · 1.45 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "web-locks",
"version": "0.0.8",
"author": "Timur Shemsedinov <[email protected]>",
"description": "Web Locks API",
"license": "MIT",
"keywords": [
"web locks",
"lock",
"locks",
"locking",
"web-locks",
"parallel",
"parallel programming",
"concurrency",
"asynchronous",
"semaphore",
"mutex",
"nodejs",
"deadlock",
"data-race",
"race-detection",
"async-await",
"async",
"await",
"synchronize",
"synchronization",
"resource",
"thread",
"threads",
"multithreading",
"cas",
"atomics",
"spinlock",
"shared memory",
"worker threads",
"workers",
"sharedarraybuffer"
],
"repository": {
"type": "git",
"url": "https://github.com/metarhia/web-locks"
},
"bugs": {
"url": "https://github.com/metarhia/web-locks/issues",
"email": "[email protected]"
},
"main": "web-locks.js",
"files": [],
"engines": {
"node": ">=11.0.0"
},
"readmeFilename": "README.md",
"scripts": {
"lint": "eslint . && prettier -c \"**/*.js\"",
"test": "npm run -s lint && node test.js",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\""
},
"devDependencies": {
"eslint": "^8.39.0",
"eslint-config-metarhia": "^8.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8"
}
}