forked from projecttacoma/cqm-execution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.69 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
{
"name": "cqm-execution",
"version": "3.0.1",
"description": "NPM module for calculating eCQMs (electronic clinical quality measures) written in CQL (clinical quality language).",
"main": "lib/index.js",
"scripts": {
"test": "./node_modules/.bin/istanbul cover -x **/spec/** --reporter=text-lcov --reporter=html ./node_modules/.bin/jasmine-node spec",
"lint": "eslint 'lib/*.js' 'lib/**/*.js' 'spec/*.js' 'spec/**/*.js'",
"build-cql": "cd ./node_modules/cql-execution && yarn install && cd ../../",
"prepublish": "./bin/build_cql_execution.sh",
"browser": "browserify lib/browser.js > dist/browser.js && ./bin/fix-mongoose.sh"
},
"repository": "git+https://github.com/projecttacoma/cqm-execution.git",
"contributors": [
{
"name": "Adam Holmes",
"email": "[email protected]"
},
{
"name": "Matt Mayer",
"email": "[email protected]"
},
{
"name": "Michael O'Keefe",
"email": "[email protected]"
},
{
"name": "James Bradley",
"email": "[email protected]"
},
{
"name": "Luke Osborne",
"email": "[email protected]"
},
{
"name": "Louis Ades"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/projecttacoma/cqm-execution/issues"
},
"homepage": "https://github.com/projecttacoma/cqm-execution#readme",
"devDependencies": {
"browserify": "^16.2.3",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"istanbul": "^0.4.5",
"jasmine-node": "^3.0.0",
"require-directory": "^2.1.1"
},
"dependencies": {
"cqm-models": "~3.0.0",
"lodash": "^4.17.5",
"moment": "^2.21.0"
}
}