forked from cqframework/cql-execution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.21 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "cql-execution",
"version": "1.4.4",
"description": "An execution framework for the Clinical Quality Language (CQL)",
"keywords": [
"CQL",
"HL7",
"MITRE",
"CQM"
],
"bugs": {
"url": "https://github.com/cqframework/clinical_quality_language/issues"
},
"contributors": [
{
"name": "Chris Moesel",
"email": "[email protected]"
},
{
"name": "Rob Dingwell",
"email": "[email protected]"
},
{
"name": "Jason Walonoski",
"email": "[email protected]"
},
{
"name": "Luke Osborne",
"email": "[email protected]"
},
{
"name": "Kristian Mulcahy",
"email": "[email protected]"
},
{
"name": "James Bradley",
"email": "[email protected]"
},
{
"name": "Chris Hossenlopp",
"email": "[email protected]"
},
{
"name": "Chris Tohline",
"email": "[email protected]"
},
{
"name": "Adam Holmes",
"email": "[email protected]"
},
{
"name": "Pete Krautscheid",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/cqframework/cql-execution.git"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babelify": "^8.0.0",
"browserify": "^16.5.1",
"coffeescript": "^1.12.7",
"coveralls": "^3.1.0",
"mocha": "^5.2.0",
"nyc": "^15.0.1",
"should": "^11.2.1"
},
"dependencies": {
"moment": "^2.20.1",
"ucum": "0.0.7"
},
"resolutions": {
"browserify/**/acorn": "^7.2.0",
"minimist": "^1.2.5"
},
"main": "lib/cql",
"directories": {
"lib": "lib"
},
"scripts": {
"prepublish": "./node_modules/.bin/cake build && ./node_modules/.bin/cake build-cql4browsers",
"test": "./node_modules/.bin/cake test",
"build": "./node_modules/.bin/cake build",
"build-test-data": "./node_modules/.bin/cake build-test-data",
"build-everything": "./node_modules/.bin/cake 'build' && ./node_modules/.bin/cake 'build-test-data' && ./node_modules/.bin/cake 'build-cql4browsers'",
"watch-all": "./node_modules/.bin/cake watch-all"
},
"license": "Apache-2.0"
}