-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.18 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.18 KB
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
{
"name": "olpo",
"version": "0.5.2",
"description": "Olpo: A type-safe TypeScript resource pool",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"preversion": "npm run build-docs && git add docs && git commit -m 'Update docs'",
"build": "rimraf 'dist' && tsc -b tsconfig-build.json",
"build-docs": "typedoc --out docs --exclude '**/*.spec.*' --mode file ./src/index.ts",
"cover": "jest --coverage && codecov",
"test": "jest"
},
"author": "Tony Wooster <twooster@gmail.com>",
"homepage": "https://github.com/twooster/olpo#readme",
"bugs": {
"url": "https://github.com/twooster/olpo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/twooster/olpo.git"
},
"engines": {
"node": ">=6.4.0"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.7",
"codecov": "^3.7.2",
"jest": "^26.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.3",
"typedoc": "^0.17.8",
"typescript": "^3.9.7"
},
"files": [
"dist"
],
"keywords": [
"pool",
"typescript",
"resource pool",
"promise"
],
"typings": "dist/index.d.ts"
}