-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.72 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
{
"name": "cqm-execution",
"version": "4.2.3",
"description": "NPM module for calculating eCQMs (electronic clinical quality measures) written in CQL (clinical quality language).",
"main": "lib/index.js",
"scripts": {
"test": "npx jest --coverage",
"jest": "npx jest",
"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": "^17.0.0",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"faker": "^4.1.0",
"jest": "^29.7.0",
"jest-extended": "^1.1.0",
"require-directory": "^2.1.1"
},
"dependencies": {
"cqm-models": "4.1.3",
"lodash": "^4.17.19",
"moment": "^2.29.4",
"yarn.lock": "^0.0.1-security"
},
"resolutions": {
"braces": "3.0.3"
}
}