-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.32 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
{
"name": "@forge4flow/forge4flow-js",
"version": "0.0.3",
"description": "JavaScript Library to Use Forge4Flow in Client Applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist/**/*",
"README.md"
],
"scripts": {
"build": "webpack --mode production --config webpack.config.js",
"build-local": "npm run build && npm pack",
"prepare": "npm run build",
"test": "npm run build && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Forge4Flow/Forge4Flow-JS.git"
},
"keywords": [
"forge4flow",
"authentication",
"identity",
"web3",
"flow",
"iam",
"warrant",
"authorization",
"rbac",
"role based access control",
"access control"
],
"author": "BoiseITGuru <dev@boiseitguru.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Forge4Flow/Forge4Flow-JS/issues"
},
"homepage": "https://github.com/Forge4Flow/Forge4Flow-JS#readme",
"devDependencies": {
"@warrantdev/warrant-node": "^3.2.0",
"mocha": "^10.2.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.4",
"webpack": "^5.41.1",
"webpack-cli": "^4.10.0",
"xmlhttprequest": "^1.8.0"
},
"dependencies": {
"@onflow/fcl": "^1.8.1",
"@onflow/typedefs": "^1.2.1",
"@onflow/types": "^1.2.1"
}
}