-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.26 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
71
72
73
74
75
76
77
78
{
"name": "@biothings-explorer/api-response-transform",
"version": "1.12.0",
"description": "a NodeJS library to transform API responses into biolink model",
"main": "built/index.js",
"types": "built/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc -b",
"test-cov": "jest --coverage --env node",
"prepare": "pnpm run build",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/biothings/api-respone-transform.js.git"
},
"keywords": [
"transform",
"biolink",
"api",
"json"
],
"author": "BioThings Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/biothings/api-respone-transform.js/issues"
},
"homepage": "https://github.com/biothings/api-respone-transform.js#readme",
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/async": "^3.2.22",
"@types/debug": "^4.1.10",
"@types/jest": "^29.5.6",
"@types/jsonata": "^1.5.1",
"@types/lodash": "^4.14.200",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"babel-jest": "^29.7.0",
"coveralls": "^3.1.1",
"debug": "^4.3.4",
"eslint": "^8.52.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",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@biothings-explorer/utils": "workspace:../utils",
"@biothings-explorer/types": "workspace:../types",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^11.0.0",
"async": "^3.2.4",
"axios": "^0.21.4",
"common-path-prefix": "^3.0.0",
"husky": "^8.0.3",
"jsonata": "^1.8.6",
"lodash": "^4.17.21",
"node-jq": "^4.2.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}