This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
65 lines (65 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
{
"name": "fhir.js",
"version": "0.0.0",
"devDependencies": {
"angular": "~1.4.0",
"babel-polyfill": "^6.7.4",
"bower": "latest",
"chance": "^1.0.4",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.10.0",
"jquery": "~2.1.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coffee-preprocessor": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-webpack": "^1.8.0",
"mocha": "^3.5.3",
"rimraf": "^2.5.4",
"typescript": "^3.2.2",
"webpack": "^1.13.2",
"webpack-dev-server": "1.0",
"whatwg-fetch": "^0.11.0",
"yui": "^3.18.1"
},
"description": "FHIR javascript client",
"main": "src/adapters/node",
"repository": {
"type": "git",
"url": "git@github.com:FHIR/fhir.js.git"
},
"scripts": {
"test": "mocha --compilers mocha --compilers coffee:coffee-script/register",
"integrate": "karma start --single-run",
"all-tests": "npm run test && npm run integrate",
"webpack": "webpack --progress --colors",
"coffee": "coffee --output lib --compile src",
"build": "rimraf dist && npm run webpack && npm run coffee"
},
"keywords": [
"fhir",
"FHIR"
],
"author": [
"Maksym Bodnarchuk <bodnarchuk@gmail.com>",
"Nikolay Ryzhikov <niquola@gmail.com>",
"Josh Mandel <joshua.mandel@childrens.harvard.edu>",
"Pavel Bubentsov <bazzy.bazzy@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/FHIR/fhir.js/issues"
},
"homepage": "https://github.com/FHIR/fhir.js",
"dependencies": {
"@types/fhir": "0.0.30",
"Base64": "~0.3.0",
"merge": "^2.1.1",
"node-fetch": "^2.6.11"
},
"files": [
"bin",
"lib",
"src"
]
}