-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.72 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.72 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
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
{
"name": "xmr-pay",
"version": "1.3.0",
"description": "Sovereign Monero payments toolkit. Client-side payment links + QR (core), stateless on-chain proof verification (verify), signed fulfillment webhooks (webhook), and a zero-dependency checkout widget. No accounts, no API keys, no third parties in the payment path.",
"main": "src/verify.js",
"exports": {
".": "./src/verify.js",
"./verify": "./src/verify.js",
"./core": "./src/core.js",
"./config": "./src/config.js",
"./receipt": "./src/receipt.js",
"./watch": "./src/watch.js",
"./scanner": "./src/scanner.js",
"./nodes": "./src/nodes.js",
"./agent": "./src/agent.js",
"./webhook": "./src/webhook.js",
"./state": "./src/state.js",
"./report": "./src/report.js",
"./refund": "./src/refund.js",
"./widget": "./widget/xmr-pay.js",
"./package.json": "./package.json"
},
"bin": {
"xmr-pay": "bin/agent.js"
},
"files": [
"bin",
"src",
"widget",
"hosted",
"examples",
"README.md",
"CHANGELOG.md",
"LICENSE",
"docs/DEPLOY.md",
"docs/WALLETS.md",
"docs/SUITE.md",
"docs/AGENT.md",
"docs/STORAGE.md",
"docs/FAQ.md",
"docs/API.md"
],
"license": "MIT",
"author": "SlowBearDigger",
"repository": {
"type": "git",
"url": "git+https://github.com/SlowBearDigger/xmr-pay.git"
},
"homepage": "https://github.com/SlowBearDigger/xmr-pay#readme",
"bugs": {
"url": "https://github.com/SlowBearDigger/xmr-pay/issues"
},
"keywords": [
"monero",
"xmr",
"payments",
"checkout",
"tx-proof",
"non-custodial",
"serverless",
"widget"
],
"peerDependencies": {
"monero-ts": ">=0.11.0"
},
"peerDependenciesMeta": {
"monero-ts": {
"optional": true
}
},
"scripts": {
"build": "bash scripts/build-widget.sh",
"release": "bash scripts/release.sh",
"test": "node test/nodes.test.js && node test/node-auth.test.js && node test/verify-gates.test.js && node test/quorum.test.js && node test/state.test.js && node test/report.test.js && node test/refund.test.js && node test/core.test.js && node test/config.test.js && node test/receipt.test.js && node test/agent-cli.test.js && node test/watch.test.js && node test/webhook.test.js && node test/webhook-redelivery.test.js && node test/verify-rpc.test.js && node test/chaos.test.js && node test/fuzz.test.js && node test/agent.test.js && node test/agent-sse.test.js && node test/verify-keyless.test.js && node test/config-pin.test.js && node test/scanner-birthday.test.js && node test/reorg.test.js && node test/expiry.test.js && node test/property.test.js && node test/rpc-fuzz.test.js && node test/false-paid.test.js && node test/webhook-storm.test.js && node test/break.test.js && node test/soak.test.js && node test/stress.test.js && node test/monero-parity.test.js && node test/adversarial-types.test.js && node test/adversarial-stress.test.js && node test/agent.load.test.js && node test/chaos-reorg.test.js && node test/invariant-stress.test.js",
"test:mut": "node test/core.test.js && node test/watch.test.js && node test/property.test.js && node test/agent.test.js && node test/reorg.test.js && node test/scanner-birthday.test.js && node test/verify-gates.test.js && node test/verify-rpc.test.js && node test/chaos.test.js && node test/rpc-fuzz.test.js",
"test:live": "node test/live-stagenet.js",
"test:scanner": "node test/live-scanner.js",
"test:fastsync": "node test/scanner-fastsync.js",
"test:summing": "node test/live-summing.js",
"test:agent": "node test/live-agent.js",
"agent": "node examples/scanner-agent.js",
"demo": "node examples/demo-server.js"
},
"devDependencies": {
"@stryker-mutator/core": "^9.6.1",
"fast-check": "^4.8.0"
}
}