-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.62 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
{
"name": "cqm-models",
"version": "4.2.1",
"description": "This library contains auto generated Mongo (Mongoose.js) models that correspond to the QDM (Quality Data Model) specification.",
"license": "ISC",
"main": "app/assets/javascripts/index.js",
"browser": {
"index.js": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/projecttacoma/cqm-models.git"
},
"homepage": "https://github.com/projecttacoma/cqm-models#readme",
"contributors": [
"Louis Ades <[email protected]>",
"Michael O'Keefe <[email protected]>",
"Adam Holmes <[email protected]>",
"Chris Hossenlopp <[email protected]>"
],
"dependencies": {
"cql-execution": "2.4.1",
"mongoose": "^7.8.3"
},
"devDependencies": {
"browserify": "^17.0.0",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"jest": "^29.7.0"
},
"resolutions": {
"browserify-sign": "^4.2.2",
"semver": "^7.5.4",
"@babel/traverse": "^7.23.3"
},
"scripts": {
"prepublish": "./bin/build_cql_execution.sh",
"test": "npx jest",
"coverage": "npx jest --coverage",
"lint": "eslint 'app/assets/javascripts/**/*.js'",
"dist": "yarn && browserify app/assets/javascripts/index.js > dist/index.js",
"browser": "browserify app/assets/javascripts/browser.js > dist/browser.js",
"browser_test": "browserify app/assets/javascripts/browser.js > tmp/dist/browser.js",
"dist_test": "browserify app/assets/javascripts/index.js > tmp/dist/index.js",
"build-cql": "cd ./node_modules/cql-execution && yarn install && cd ../../"
}
}