forked from smart-on-fhir/client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.19 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
{
"name": "fhirclient",
"version": "2.3.11",
"description": "JavaScript client for Fast Healthcare Interoperability Resources",
"author": "SMART Health IT <[email protected]> (https://smarthealthit.org/)",
"contributors": [
"Josh Mandel <[email protected]>",
"Vladimir Ignatov <[email protected]>"
],
"keywords": [
"SMART",
"FHIR",
"Client"
],
"license": "Apache-2.0",
"main": "src/index.js",
"browser": "src/browser.js",
"dependencies": {
"@types/hapi": "^18.0.3",
"abortcontroller-polyfill": "^1.5.0",
"core-js": "^3.6.5",
"cross-fetch": "^3.0.5",
"debug": "^4.1.1"
},
"scripts": {
"test": "lab test/*.test.ts",
"pack": "webpack",
"build": "npm run build:module && npm run pack",
"build:dev": "webpack --watch",
"cover": "lab -r lcov -o lcov.info test/**.ts && cat lcov.info | coveralls && rm -rf lcov.info",
"build:module": "cp src/types.d.ts dist/lib && tsc -p tsconfig.module.json && babel --env-name module -d dist/lib dist/lib",
"doc": "typedoc src && touch docs/typedoc/.nojekyll"
},
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/runtime": "^7.11.2",
"@hapi/code": "^8.0.2",
"@hapi/lab": "^23.0.0",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.8",
"@types/node": "^13.13.16",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"cors": "^2.8.5",
"coveralls": "^3.1.0",
"express": "^4.17.1",
"fhir.js": "0.0.22",
"jsdom": "^15.2.1",
"lab-transform-typescript": "^3.0.1",
"ts-loader": "^6.2.2",
"tslint": "^5.20.1",
"typedoc": "^0.15.8",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
},
"engine": "node >= 10",
"repository": {
"type": "git",
"url": "git+https://github.com/smart-on-fhir/client-js.git"
},
"bugs": {
"url": "https://github.com/smart-on-fhir/client-js/issues"
},
"homepage": "http://docs.smarthealthit.org/client-js/",
"types": "src/types.d.ts"
}