-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.04 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@scobru/shogun",
"version": "0.0.7",
"description": "A Metamask alternative that empowers you to build good UX with decentralized wallet management using Gun.js",
"browser": {
"node-localstorage": false
},
"dependencies": {
"ethers": "^6.13.5",
"gun": "^0.2020.1239",
"jest": "^29.7.0"
},
"devDependencies": {
"@tsconfig/node16-strictest": "1.0.3",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "18.6.1",
"chai": "^5.1.2",
"mocha": "^10.8.2",
"node-localstorage": "^3.0.5",
"rollup": "2.77.1",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-typescript2": "0.32.1",
"standard": "17.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"lint": "standard",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc",
"pretest": "npm run build",
"test": "mocha tests/**/*.test.js",
"prepublishOnly": "npm run build",
"prepare": "npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"standard": {
"globals": [
"Blob",
"self",
"Worker",
"postMessage",
"describe",
"it",
"beforeEach"
]
},
"author": {
"name": "Scobru",
"url": "https://github.com/scobru"
},
"license": "MIT",
"keywords": [
"ethereum",
"wallet",
"web3",
"dapp",
"gundb",
"decentralized",
"blockchain",
"cryptocurrency",
"stealth-address"
],
"repository": {
"type": "git",
"url": "git+https://github.com/scobru/hugo.git"
},
"bugs": {
"url": "https://github.com/scobru/hugo/issues"
},
"homepage": "https://github.com/scobru/hugo#readme",
"mocha": {
"require": [
"ts-node/register"
],
"extension": [
"ts"
],
"spec": "tests/**/*.test.js"
},
"engines": {
"node": ">=16.0.0"
}
}