-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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": "web-credential-handler",
"version": "3.0.1-0",
"description": "Credential Handler API util functions for Bedrock Web apps",
"type": "module",
"main": "./lib/index.js",
"exports": "./lib/index.js",
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.js.LICENSE.txt",
"lib/**/*.js"
],
"scripts": {
"prepublish": "npm run build",
"build": "webpack",
"lint": "eslint --ext .cjs,.js ."
},
"dependencies": {
"credential-handler-polyfill": "^4.0.0",
"web-request-rpc": "^3.0.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-digitalbazaar": "^5.2.0",
"eslint-plugin-jsdoc": "^48.4.0",
"eslint-plugin-unicorn": "^54.0.0",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/credential-handler/web-credential-handler"
},
"author": {
"name": "Digital Bazaar, Inc.",
"email": "support@digitalbazaar.com",
"url": "http://digitalbazaar.com"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/credential-handler/web-credential-handler/issues"
},
"homepage": "https://github.com/credential-handler/web-credential-handler",
"bedrock": {
"browserDependencies": "all"
}
}