forked from smart-on-fhir/client-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.27 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
{
"name": "fhirclient",
"version": "2.3.0",
"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.4.0",
"core-js": "^3.5.0",
"cross-fetch": "^3.0.4",
"crypto-js": "^3.1.9-1",
"debug": "^4.1.1"
},
"scripts": {
"test": "lab test/**.ts",
"lint": "tslint 'src/**/*.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.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.6",
"@babel/runtime": "^7.7.7",
"@hapi/code": "^7.0.0",
"@hapi/lab": "^21.0.0",
"@types/crypto-js": "^3.1.43",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.2",
"@types/node": "^13.1.1",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"cors": "^2.8.5",
"coveralls": "^3.0.9",
"express": "^4.17.1",
"fhir.js": "0.0.22",
"jsdom": "^15.2.1",
"lab-transform-typescript": "^3.0.1",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"typedoc": "^0.15.8",
"typescript": "^3.7.4",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"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"
}