forked from credential-handler/credential-handler-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "credential-handler-polyfill",
"version": "3.2.1-0",
"description": "Credential Handler API Polyfill",
"type": "module",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/credential-handler-polyfill.git"
},
"author": {
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "http://digitalbazaar.com"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/digitalbazaar/credential-handler-polyfill/issues"
},
"homepage": "https://github.com/digitalbazaar/credential-handler-polyfill",
"dependencies": {
"web-request-rpc": "^2.0.2"
},
"bedrock": {
"browserDependencies": [
"web-request-rpc"
]
},
"devDependencies": {
"webpack": "^4.10.2",
"webpack-cli": "^3.3.9"
},
"files": [
"dist/*.js",
"dist/*.js.map",
"index.js",
"Credential*.js",
"PermissionManager.js",
"WebCredential.js"
],
"scripts": {
"prepublish": "npm run build",
"build": "webpack --mode development"
}
}