forked from FHIR/fhir.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.48 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
{
"name": "lifen-fhir.js",
"version": "1.14.0",
"devDependencies": {
"babel-polyfill": "^6.7.4",
"bower": "latest",
"chance": "^1.1.9",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.10.0",
"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.7.1",
"typescript": "^3.9.10",
"webpack": "^1.13.2",
"webpack-dev-server": "1.0"
},
"description": "FHIR javascript client",
"repository": {
"type": "git",
"url": "[email protected]: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 <[email protected]>",
"Nikolay Ryzhikov <[email protected]>",
"Josh Mandel <[email protected]>",
"Pavel Bubentsov <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/FHIR/fhir.js/issues"
},
"homepage": "https://github.com/FHIR/fhir.js",
"dependencies": {
"@types/fhir": "0.0.30"
},
"files": [
"bin",
"lib",
"src"
]
}