-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.48 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
{
"name": "composable-locks",
"version": "0.5.0",
"description": "Composable concurrency locks for Javascript.",
"files": [
"dist"
],
"keywords": [
"mutex",
"lock",
"reentrant",
"composable",
"async"
],
"source": "./src/index.ts",
"module": "./dist/index.mjs",
"main": "./dist/index.js",
"umd:main": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"sideEffects": false,
"author": "eblocha",
"license": "LGPL-3.0-or-later",
"homepage": "https://github.com/eblocha/composable-locks#readme",
"repository": {
"type": "git",
"url": "https://github.com/eblocha/composable-locks"
},
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && microbundle --target node --raw",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint ./src --ext=ts",
"prepublishOnly": "yarn test && yarn lint && yarn build",
"size": "size-limit"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.4",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vitest/coverage-c8": "^0.29.7",
"eslint": "^8.36.0",
"fast-check": "^3.7.1",
"microbundle": "^0.15.1",
"size-limit": "^8.2.4",
"typescript": "^5.0.2",
"vite": "^4.2.1",
"vitest": "^0.29.7"
},
"dependencies": {}
}