-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.59 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
68
69
70
{
"name": "@cat5th/pool.js",
"version": "1.4.1",
"description": "Represents a generic object pool for javascript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./dist/index.mjs": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "[email protected]:harvey-woo/pool.js.git"
},
"keywords": [
"pool",
"object pool",
"object",
"pooling",
"pool.js",
"pooljs",
"pool-js",
"object-pool",
"object-pooling",
"object-pool.js",
"object-pooljs",
"object-pool-js",
"p-limit",
"pLimit"
],
"author": "Harvey Woo",
"license": "MIT",
"bugs": {
"url": "https://github.com/harvey-woo/pool.js/issues"
},
"homepage": "https://github.com/harvey-woo/pool.js#readme",
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "husky install",
"test": "jest --coverage",
"build": "tsup",
"version": "yarn test && yarn build && git add -A .",
"postversion": "git push && git push --tags",
"cov": "codecov -f coverage/clover.xml,coverage/lcov.info,coverage/coverage-final.json"
},
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@swc/core": "^1.3.100",
"@types/jest": "^29.5.11",
"codecov": "^3.8.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
}
}