-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (124 loc) · 6.77 KB
/
package.json
File metadata and controls
125 lines (124 loc) · 6.77 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "cass",
"version": "1.6.21",
"description": "Competency and Skills System",
"main": "src/main/server.js",
"scripts": {
"test": "npm run test:deps && npm run mochaDev",
"testWithCoverage": "npm run test:deps && nyc --reporter=lcov --reporter=text --all --include 'src/main/**' --exclude 'node_modules/**' --exclude 'src/main/webapp/**' npm run mochaDev",
"test:start": "node src/main/server.js",
"test:deps": "docker compose up -d elasticsearch-cass",
"dev": "npm run dev:deps && npm run dev:nodemon",
"dev:docker": "npm run dev:deps && npm run dev:nodemon:docker",
"dev:https": "npm run dev:deps && export HTTPS=true|| set HTTPS=true&& npm run dev:nodemon",
"dev:clientSideCertificates": "npm run dev:deps && export HTTPS=true|| set HTTPS=true&& export HTTP2=false|| set HTTP2=false&& export HTTPS_REJECT_UNAUTHORIZED=false|| set HTTPS_REJECT_UNAUTHORIZED=false&& export REQUEST_CLIENT_SIDE_CERTIFICATE=true|| set REQUEST_CLIENT_SIDE_CERTIFICATE=true&& npm run dev:nodemon",
"dev:jwt": "npm run dev:deps && export CASS_JWT_ENABLED=true|| set CASS_JWT_ENABLED=true&& npm run dev:nodemon",
"dev:deps": "docker compose up -d elasticsearch-cass",
"dev:oidcdeps": "docker compose up --build -d elasticsearch-cass",
"dev:oidc": "npm run dev:oidcdeps && export CASS_OIDC_ENABLED=true|| set CASS_OIDC_ENABLED=true&& npm run dev:nodemon",
"dev:nodemon": "nodemon --watch ../cass-npm --watch . --max-old-space-size=512 --ignore etc src/main/server.js",
"dev:nodemon:docker": "nodemon --ignore etc --exec \"docker compose up -d --build\"",
"dev:nyc": "nyc --reporter lcov node src/main/server.js",
"dev:node": "export CASS_LOOPBACK=http://localhost:8080/api/|| set CASS_LOOPBACK=http://localhost:8080/api/&&export PORT=8080|| set PORT=8080&&node src/main/server.js",
"mocha": "export NODEV=true|| set NODEV=true&& mocha -b --exit --timeout 30000 src/**/*.test.js node_modules/cassproject/**/*.test.js",
"mochaDev": "export CLOSE=true|| set CLOSE=true&& mocha -b --exit --timeout 30000 src/**/*.test.js node_modules/cassproject/**/*.test.js",
"mochaDevHttps": "export CLOSE=true|| set CLOSE=true&& export HTTPS=true|| set HTTPS=true&& export HTTPS_REJECT_UNAUTHORIZED=false|| set HTTPS_REJECT_UNAUTHORIZED=false&& mocha -b --exit --timeout 30000 src/**/*.test.js node_modules/cassproject/**/*.test.js",
"mochaEncryption": "mocha -b --exit --timeout 30000 node_modules/cassproject/src/com/eduworks/ec/crypto/*.test.js",
"mochafast": "mocha -b --exit src/**/*.test.js",
"mochaHttps": "export CASS_LOOPBACK=https://localhost/api/|| set CASS_LOOPBACK=https://localhost/api/&&npm run mocha",
"nyc": "nyc --reporter lcov npm run mocha",
"automocha": "nodemon --watch . --exec \"npm run mochaDev\"",
"autonyc": "npm run dev:deps && nodemon --watch ../cass-npm --watch . --exec \"npm run run:nyc\"",
"automochafast": "nodemon --exec \"npm run mochafast\"",
"run:nyc": "export CASS_LOOPBACK=http://localhost:8080/api/|| set CASS_LOOPBACK=http://localhost:8080/api/&&export PORT=8080|| set PORT=8080&& nyc --reporter lcov npm run mochaDev",
"run:merge": "nyc report --reporter=lcov",
"run:withTests": "npm run test:start & npm run mochaEncryption",
"openapi:devValidate": "npm install -g @apidevtools/swagger-cli && nodemon --ignore ./swaggerx.json --exec \"npm run openapi:justValidate\"",
"openapi:validate": "npm install -g @apidevtools/swagger-cli && wait-on http://localhost/api/swagger.json && curl -o swaggerx.json http://localhost/api/swagger.json && swagger-cli validate swaggerx.json",
"openapi:justValidate": "wait-on http://localhost/api/swagger.json && curl -o swaggerx.json http://localhost/api/swagger.json && swagger-cli validate swaggerx.json && del swaggerx.json",
"build:test": "docker build --progress plain -f docker/test/Dockerfile -t cass-test .",
"buildRun:kill": "docker kill cass-test | exit 0 && docker rm cass-test | exit 0",
"buildRun:standalone": "npm run buildRun:kill && docker build --pull --progress plain -f docker/standalone/Dockerfile -t cass-test . && docker run -p80:80 -p9200:9200 --name cass-test cass-test",
"buildRun:standaloneNode": "npm run buildRun:kill && docker build --pull --progress plain -f docker/standalone/node/Dockerfile -t cass-test . && docker run -p80:80 --name cass-test cass-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cassproject/CASS.git"
},
"keywords": [
"cass",
"competency",
"skills",
"cassproject"
],
"author": "Eduworks Corporation <cass@eduworks.com> (http://cassproject.org)",
"contributors": [
"Ronald 'Fritz' Ray <fritz.ray@eduworks.com>",
"Mile Divovic <mile.divovic@eduworks.com>",
"Debbie Brown <debbie.brown@eduworks.com>",
"Elaine Kelsey <elaine.kelsey@eduworks.com>",
"Kari Glover <kari.glover@eduworks.com>",
"Tyler Landowski <tyler.landowski@eduworks.com>",
"Thomas Buskirk (Departed) <tom.buskirk@eduworks.com>",
"Kristin Wood (Retired) <kristin.wood@eduworks.com>",
"Devlin Junker (Retired) <devlin.junker@eduworks.com>",
"Aaron Veden (Retired) <aaron.veden@eduworks.com>",
"Robby Goetschalckx (Retired) <robby.goetschalckx@eduworks.com>",
"Aleita Train (Retired) <aleita.train@eduworks.com>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cassproject/CASS/issues"
},
"homepage": "https://github.com/cassproject/CASS#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.1030.0",
"@xmldom/xmldom": "^0.9.9",
"busboy": "^1.6.0",
"cassproject": "^5.0.14",
"check-disk-space": "^3.4.0",
"compression": "^1.8.1",
"cors": "^2.8.6",
"express": "^4.22.1",
"express-jwt": "^8.5.1",
"express-openid-connect": "^2.20.1",
"express-ws": "^5.0.2",
"glob": "^13.0.6",
"jsonpath-plus": "^10.4.0",
"node-object-hash": "^3.1.1",
"node-worker-threads-pool": "^1.5.1",
"nodemailer": "^8.0.5",
"openapi-schema-validator": "^12.1.3",
"pure-uuid": "^2.0.0",
"rdflib": "^2.3.6",
"rxjs": "^7.8.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"undici": "^6.24.1",
"uuid": "^13.0.0",
"ws": "^8.20.0"
},
"devDependencies": {
"chai": "4.5.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.4",
"eslint-config-google": "^0.14.0",
"express-openapi-validator": "^5.6.2",
"fake-indexeddb": "^6.2.5",
"mocha": "^11.7.5",
"nodemon": "^3.1.14",
"nyc": "^17.1.0",
"sinon": "^21.1.2",
"wait-on": "^9.0.5"
},
"packageManager": "npm@11.3.0+sha512.96eb611483f49c55f7fa74df61b588de9e213f80a256728e6798ddc67176c7b07e4a1cfc7de8922422cbce02543714367037536955221fa451b0c4fefaf20c66",
"overrides": {
"swagger-jsdoc": {
"minimatch": "^10.2.4",
"glob": "^13.0.6"
},
"glob": {
"minimatch": "^10.2.4"
}
}
}