forked from FHIR/fhir.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.71 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
{
"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": "^1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coffee-preprocessor": "^1.0.1",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.1",
"karma-webpack": "^1.8.0",
"mocha": "^2.5.3",
"phantomjs-prebuilt": "^2.1.12",
"rimraf": "^2.5.4",
"webpack": "^1.13.2",
"webpack-dev-server": "1.0",
"whatwg-fetch": "^0.11.0",
"yui": "~3.17.1"
},
"description": "FHIR javascript client",
"main": "src/adapters/node",
"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": {
"q": "^1.4.1",
"merge": "^1.1.3",
"Base64": "~0.3.0",
"request": "~2.88.0"
},
"files": [
"bin",
"lib",
"src"
]
}