forked from Vermonster/fhir-kit-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.67 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
{
"name": "fhir-kit-client",
"version": "1.3.0",
"description": "FHIR Client",
"keywords": [
"FHIR",
"SMART",
"CDS Hooks",
"HL7"
],
"main": "lib/client.js",
"engines": {
"node": ">=8.10.0",
"yarn": ">= 1.3.2"
},
"scripts": {
"docs": "rm -rf ./docs && jsdoc --configure .jsdoc.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:watch": "chokidar --initial './lib' './test' './examples' -c 'yarn lint'",
"test": "mocha test --reporter spec",
"test:watch": "chokidar --initial './lib' './test' './examples' -c 'yarn test'",
"watch": "yarn test:watch & yarn lint:watch",
"coveralls": "nyc yarn test && nyc report --reporter=text-lcov | coveralls",
"coveralls:report": "nyc --reporter=lcov --reporter=text-lcov npm test"
},
"author": "Vermonster",
"license": "MIT",
"files": [
"LICENSE",
"README.md",
"lib/"
],
"repository": {
"type": "git",
"url": "https://github.com/Vermonster/fhir-kit-client.git"
},
"devDependencies": {
"chai": "^4.1.2",
"chokidar-cli": "^1.2.0",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.10.0",
"jsdoc": "^3.5.5",
"minami": "^1.2.3",
"mocha": "^5.0.5",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^9.2.3",
"nyc": "^11.6.0"
},
"dependencies": {
"debug": "^3.1.0",
"es6-promise": "^4.2.4",
"query-string": "^6.2.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"universal-url": "^1.0.1"
},
"nyc": {
"exclude": [
"test/**",
"lib/logging.js"
]
}
}