generated from kevinxin90/typescript_template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "biolink-model",
"version": "0.4.0",
"description": "A nodejs module to consume biolink model",
"main": "built/index.js",
"scripts": {
"test": "jest",
"test-cov": "jest --coverage",
"build": "tsc -b",
"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/biolink-model.js.git"
},
"keywords": [
"biothings-explorer",
"biolink",
"biomedical",
"ontology"
],
"author": "jiwen xin",
"license": "ISC",
"bugs": {
"url": "https://github.com/biothings/biolink-model.js/issues"
},
"homepage": "https://github.com/biothings/biolink-model.js#readme",
"devDependencies": {
"@types/debug": "^4.1.10",
"@types/jest": "^26.0.24",
"@types/js-yaml": "^4.0.8",
"@types/lodash": "^4.14.200",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"coveralls": "^3.1.1",
"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": {
"axios": "^0.21.4",
"debug": "^4.3.4",
"js-yaml": "^4.1.0",
"pascal-case": "^3.1.2"
}
}