-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.88 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@biothings-explorer/utils",
"version": "1.0.0",
"description": "A bundle of commonly-used utilities within other BTE modules",
"main": "./built/index.js",
"types": "./built/index.d.ts",
"scripts": {
"build": "tsc -b",
"prepare": "pnpm run build",
"test": "jest --env=node",
"test-cov": "jest --coverage --env=node",
"clean": "rimraf ./built './**/tsconfig.tsbuildinfo'",
"build:clean": "pnpm run clean && pnpm run build",
"format": "prettier --check 'src/**/*.ts'",
"format:fix": "prettier --write 'src/**/*.ts'",
"lint": "eslint . --ext .ts",
"lint:fix": "pnpm lint --fix"
},
"keywords": [
"api",
"biothings",
"explorer"
],
"author": "Jackson Callaghan",
"license": "ISC",
"bugs": {
"url": "https://github.com/biothings/bte-utils/issues"
},
"homepage": "https://github.com/biothings/bbte-utils#readme",
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/debug": "^4.1.10",
"@types/jest": "^29.5.7",
"@types/lodash": "^4.14.200",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"biolink-model": "workspace:../biolink-model",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@opentelemetry/api": "^1.7.0",
"@sentry/node": "^7.74.1",
"debug": "^4.3.4",
"ioredis": "^5.3.2",
"ioredis-mock": "^8.9.0",
"lodash": "^4.17.21",
"proper-lockfile": "^4.1.2",
"redlock": "5.0.0-beta.2"
}
}