-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.32 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
{
"name": "cap",
"private": true,
"version": "0.6.4-rc.3",
"description": "Fedora User Interface",
"repository": "https://github.com/TAMULib/Cap",
"license": "MIT",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"install-dev-local": "npm install --registry http://localhost:4873",
"install-dev-docker-host": "npm install --registry http://host.docker.internal:4873",
"pretest": "npm run build",
"test": "karma start ./karma.conf.js --single-run --browsers Firefox,ChromeHeadlessNoSandbox",
"test:watch": "karma start ./karma.conf.js",
"pretest:ci": "npm run pretest",
"test:ci": "karma start ./karma.conf.js --no-auto-watch --single-run --browsers=ChromeHeadlessNoSandbox",
"test:audit": "rimraf .lighthouseci && lhci autorun --upload.target=temporary-public-storage --config=./lighthouserc.json && node scripts/build-lighthouse-badges.js",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor tests/e2e/protractor.conf.js",
"clean": "wvr clean",
"build": "wvr build --clean"
},
"dependencies": {
"@wvr/core": "2.2.7",
"ng-csv": "0.3.6",
"ng-table": "3.0.1",
"openseadragon": "2.4.0"
},
"devDependencies": {},
"overrides": {
"glob-stream": "^7.0.0"
}
}