This repository was archived by the owner on Oct 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.68 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.68 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
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
{
"name": "umlsjs",
"version": "1.2.1",
"description": "Nodejs package to access UMLS REST web-services",
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"mocktest": "tsdx test --detectOpenHandles /mocktest",
"lint": "tsdx lint --fix",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"docs": "typedoc --out docs src",
"preversion": "npm test",
"version": "npm run build",
"postversion": "rm -rf build/temp",
"release": "npm version patch && npm publish",
"gpr-setup": "node scripts/gpr.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dermatologist/umlsjs.git"
},
"keywords": [
"UMLS",
"REST"
],
"dependencies": {
"axios": "^0.26.1",
"fast-xml-parser": "^3.19.0",
"he": "^1.2.0",
"querystring": "^0.2.1"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^5.0.1",
"dotenv": "^16.0.0",
"husky": "^7.0.1",
"size-limit": "^5.0.1",
"tsdx": "^0.14.1",
"typedoc": "^0.22.6",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"module": "dist/umlsjs.esm.js",
"size-limit": [
{
"path": "dist/umlsjs.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/umlsjs.esm.js",
"limit": "10 KB"
}
],
"author": "Bell Eapen",
"license": "MIT",
"bugs": {
"url": "https://github.com/dermatologist/umlsjs/issues"
},
"homepage": "https://github.com/dermatologist/umlsjs#readme"
}