-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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
{
"devDependencies": {
"@ncpa0cpl/nodepack": "^1.2.2",
"@swc/core": "^1.2.246",
"@swc/jest": "^0.2.22",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"esbuild": "^0.14.1",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.4.3",
"prettier": "^2.5.0",
"prettier-plugin-jsdoc": "^0.3.30",
"typescript": "^4.5.2"
},
"name": "@ncpa0cpl/mutex.js",
"version": "1.0.1",
"main": "./dist/legacy/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
}
},
"keywords": [
"mutex",
"mutual",
"exclusion",
"lock",
"race",
"condition",
"atomic",
"atomicity",
"transaction",
"synchronization"
],
"description": "Mutual Exclusion mechanism for Asynchronous JS Code.",
"scripts": {
"build": "node ./scripts/build.mjs",
"lint": "eslint .",
"tsc": "tsc --noEmit",
"test": "jest --coverage",
"publish:package": "npm publish --access public --@ncpa0cpl:registry=https://registry.npmjs.org"
},
"author": {
"name": "Szymon Bretner (ncpa0cpl)",
"url": "https://github.com/ncpa0cpl/"
},
"repository": {
"url": "https://github.com/ncpa0cpl/mutex.js"
},
"license": "MIT"
}