forked from FHIR/fhir.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.05 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.js",
"version": "0.0.10",
"devDependencies": {
"angular": "~1.4.0",
"babel-polyfill": "^6.7.4",
"bower": "latest",
"jquery": "~2.1.1",
"karma": "latest",
"karma-chrome-launcher": "latest",
"karma-coffee-preprocessor": "latest",
"karma-jasmine": "latest",
"karma-phantomjs-launcher": "latest",
"karma-webpack": "latest",
"mocha": "latest",
"phantomjs-prebuilt": "latest",
"webpack-dev-server": "latest",
"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": {
"start": "webpack-dev-server --port $PORT --progress --colors",
"build": "rm -rf dist && `npm bin`/webpack --progress --colors && `npm bin`/coffee --output lib --compile src",
"spec": "node_modules/karma/bin/karma start --single-run",
"integrate": "node_modules/karma/bin/karma start karma-itegration.conf.js --single-run",
"node-test": "node_modules/.bin/mocha --compilers mocha --compilers coffee:coffee-script/register node_tests",
"spec-node": " node_modules/.bin/mocha --compilers mocha --compilers coffee:coffee-script/register",
"spec-watch": "node_modules/karma/bin/karma start",
"all-tests": "npm run node-test && npm run spec && npm run spec-node && npm run integrate"
},
"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": "latest",
"coffee-script": "latest",
"coffee-loader": "latest",
"webpack": "latest",
"merge": "~1.1.3",
"Base64": "~0.3.0",
"chance": "latest",
"request": "~2.42.0"
},
"files": [
"bin",
"lib",
"src"
]
}