-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
90 lines (90 loc) · 2.63 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
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@biothings-explorer/smartapi-kg",
"version": "4.0.0",
"description": "create a knowledge graph based on SmartAPI Specifications",
"main": "built/index.js",
"types": "built/index.d.ts",
"scripts": {
"build": "tsc --project ./",
"test": "jest --env=node",
"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/smartapi-kg.js.git"
},
"keywords": [
"smartapi",
"biothings-explorer",
"network",
"knowledge graph",
"kg"
],
"author": "Jiwen Xin",
"license": "ISC",
"bugs": {
"url": "https://github.com/biothings/smartapi-kg.js/issues"
},
"homepage": "https://github.com/biothings/smartapi-kg.js#readme",
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/debug": "^4.1.10",
"@types/express": "^4.17.20",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.200",
"@types/node": "^14.18.63",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"babel-loader": "^8.3.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",
"jsdoc": "^3.6.11",
"nodemon": "^2.0.22",
"path-browserify": "^1.0.1",
"prettier": "^3.0.3",
"readme-md-generator": "^1.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"ts-node": "^9.1.1",
"typescript": "^5.2.2",
"uglify-js": "^3.17.4",
"webpack": "^5.89.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@babel/runtime": "^7.23.2",
"@biothings-explorer/utils": "workspace:../utils",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^11.0.0",
"axios": "^0.21.4",
"camelcase": "^6.3.0",
"core-js": "^3.33.1",
"debug": "^4.3.4",
"husky": "^8.0.3",
"load-json-file": "^7.0.1",
"lodash": "^4.17.21"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}