forked from smart-on-fhir/client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.88 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
91
92
93
94
95
96
97
98
{
"name": "fhirclient",
"version": "2.5.3",
"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]>",
"Dylan Phelan <[email protected]>"
],
"keywords": [
"SMART",
"FHIR",
"Client"
],
"license": "Apache-2.0",
"main": "dist/lib/entry/node.js",
"browser": "dist/lib/entry/browser.js",
"browserslist": [
"last 2 Chrome versions",
"last 2 firefox versions",
"last 2 Edge versions",
"ie 11"
],
"dependencies": {
"abortcontroller-polyfill": "^1.5.0",
"core-js": "^3.23.4",
"cross-fetch": "^3.0.5",
"debug": "^4.1.1",
"isomorphic-webcrypto": "^2.3.8",
"jose": "^4.6.0",
"js-base64": "^3.7.2"
},
"scripts": {
"test-only": "lab --typescript test/*.test.ts",
"test": "nyc --cache false --reporter lcov --reporter html lab --typescript test/*.test.ts",
"pack": "webpack",
"build": "npm run clean && npm run build:module && npm run pack",
"build:dev": "webpack --watch",
"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",
"clean": "rm -rf dist/build && rm -r dist/lib/*",
"nightwatch": "nightwatch --headless test/specs/*.js"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/runtime": "^7.18.6",
"@hapi/code": "^8.0.2",
"@hapi/lab": "^24.2.1",
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.8",
"@types/hapi": "^18.0.3",
"@types/jsonwebtoken": "^8.5.1",
"@types/mocha": "^9.1.1",
"@types/nightwatch": "^2.3.0",
"@types/node": "^16.9.1",
"babel-loader": "^8.2.5",
"babel-polyfill": "^6.26.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chromedriver": "^104.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsdom": "^20.0.0",
"jsonwebtoken": "^8.5.1",
"nightwatch": "^2.3.0",
"nyc": "^15.1.0",
"ts-loader": "^9.3.1",
"ts-node": "^10.2.1",
"tslint": "^5.20.1",
"typedoc": "^0.22.13",
"typescript": "^4.6.0",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"engines": {
"node": ">=14"
},
"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",
"nyc": {
"include": "src"
}
}