forked from smart-on-fhir/client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.49 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.1.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/adapters/NodeAdapter.js",
"browser": "src/browser.js",
"dependencies": {
"@babel/runtime": "^7.4.5",
"@types/debug": "^4.1.4",
"@types/whatwg-fetch": "0.0.33",
"core-js": "^3.1.3",
"debug": "^4.1.1",
"node-fetch-npm": "^2.0.2",
"whatwg-fetch": "^3.0.0"
},
"scripts": {
"test": "lab -P test --ignore fetch,Response,Headers,Request --threshold 90 --verbose --coverage-exclude lib -r console -r html -o stdout -o test/coverage.html",
"pack:prod": "webpack --config webpack.config.js --mode production",
"pack:dev": "webpack --config webpack.config.js --mode development",
"pack:prod:pure": "npm run pack:prod -- --pure",
"pack:dev:pure": "npm run pack:dev -- --pure",
"pack": "npm run pack:dev && npm run pack:prod && npm run pack:dev:pure && npm run pack:prod:pure",
"build": "npm run build:module && npm run pack",
"build:dev": "npm run pack:dev -- --watch",
"cover": "lab -P test --ignore fetch,Response,Headers,Request --threshold 0 --coverage-exclude lib -r lcov | coveralls",
"build:module": "babel -d dist/lib src"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@hapi/code": "^5.3.1",
"@hapi/lab": "^19.0.1",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"cors": "^2.8.5",
"coveralls": "^3.0.4",
"eslint": "^5.16.0",
"express": "^4.17.0",
"fhir.js": "0.0.20",
"jsdom": "^15.1.1",
"local-web-server": "^2.6.1",
"typescript": "^3.5.2",
"webpack": "^4.32.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.2"
},
"engine": "node >= 10",
"browserslist": [
"last 2 Chrome versions",
"last 2 firefox versions",
"last 2 Edge versions",
"ie 10-11"
],
"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/"
}