-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.93 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.93 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
{
"name": "@practical-computer/practical-views",
"version": "1.1.0",
"description": "The JS code for the view layer of the Practical Framework",
"exports": {
"./elements/auto-expire": "./src/elements/auto-expire.js",
"./elements/submit-with-selected-menu-item": "./src/elements/submit-with-selected-menu-item.js",
"./elements/toast-dialog": "./src/elements/toast-dialog.js",
"./handlers/json-redirection": "./src/handlers/json-redirection.js",
"./util/auto-generate-id": "./src/util/auto-generate-id.js",
"./util/ensure-delcarative-open-modal-dialogs-are-modal": "./src/util/ensure-delcarative-open-modal-dialogs-are-modal.js",
"./util/focus-on-ajax-success-event": "./src/util/focus-on-ajax-success-event.js",
"./util/js-enabled-flag": "./src/util/js-enabled-flag.js",
"./util/throw-away-existing-cableready-operation-event": "./src/util/throw-away-existing-cableready-operation-event.js",
"./util/open-modal-dialog-on-cablecar-event": "./src/util/open-modal-dialog-on-cablecar-event.js",
"./util/remove-disabled-since-when-loaded": "./src/util/remove-disabled-since-when-loaded.js",
"./util/reset-on-ajax-success-event": "./src/util/reset-on-ajax-success-event.js",
"./util/submit-form-on-command-enter": "./src/util/submit-form-on-command-enter.js",
"./util/theme-preference": "./src/util/theme-preference.js",
"./passkeys/elements/submit-form-after-reauthentication": "./src/passkeys/elements/submit-form-after-reauthentication.js",
"./passkeys/elements/unlock-form-after-reauthentication": "./src/passkeys/elements/unlock-form-after-reauthentication.js",
"./passkeys/handlers/authenticate": "./src/passkeys/handlers/authenticate.js",
"./passkeys/handlers/register": "./src/passkeys/handlers/register.js",
"./passkeys/util/conditional-mediation-available": "./src/passkeys/util/conditional-mediation-available.js",
"./passkeys/util/get-reauthentication-token": "./src/passkeys/util/get-reauthentication-token.js"
},
"scripts": {
"start": "web-dev-server --open demo/ --node-resolve",
"start:watch": "web-dev-server --open demo/ --node-resolve --watch",
"test": "web-test-runner test/**/test-runner.test.js --coverage --node-resolve",
"test:watch": "web-test-runner test/**/test-runner.test.js --node-resolve --watch",
"docs": "jsdoc -c jsdoc.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/practical-computer/practical-views-js.git"
},
"keywords": [
"practical-framework"
],
"author": "Thomas Cannon",
"license": "MIT",
"bugs": {
"url": "https://github.com/practical-computer/practical-views-js/issues"
},
"homepage": "https://github.com/practical-computer/practical-views-js#readme",
"devDependencies": {
"@open-wc/testing": "^4.0.0",
"@web/dev-server": "^0.4.6",
"@web/test-runner": "^0.20.1",
"jsdoc": "^4.0.5"
},
"dependencies": {
"@github/webauthn-json": "^2.1.1",
"mrujs": "^1.0.2"
}
}