-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.11 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
{
"name": "x-pool",
"version": "1.0.0",
"description": "A generic resource pool",
"author": "Stephen Cresswell",
"license": "ISC",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"generic",
"resource",
"pool",
"typed",
"TypeScript",
"observable"
],
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"scripts": {
"coverage": "nyc --report html --reporter lcov --reporter text-summary npm test",
"test": "zUnit",
"lint": "eslint .",
"prepare": "husky install"
},
"lint-staged": {
"**/*.js": "eslint --fix"
},
"devDependencies": {
"@types/node": "^20.5.2",
"debug": "^4.3.4",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"nyc": "^15.1.0",
"zunit": "^4.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acuminous/x-pool.git"
},
"bugs": {
"url": "https://github.com/acuminous/x-pool/issues"
},
"homepage": "https://acuminous.github.io/x-pool"
}