forked from moneybutton/paymail-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.65 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.65 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
{
"name": "@samooth/paymail-client",
"version": "0.5.2",
"description": "Isomorphic Paymail Utilities.",
"commonjs": "dist/paymail-client.cjs",
"type": "module",
"main": "dist/paymail-client.umd.cjs",
"module": "dist/paymail-client.js",
"unpkg": "dist/paymail-client.umd.cjs",
"library": "PaymailClient",
"files": [
"dist/**"
],
"scripts": {
"lint": "standard",
"fix": "standard --fix",
"pretest": "yarn lint",
"test": "vitest",
"build": "vite build",
"build:dev": "NODE_ENV=development npm run build",
"build:prod": "NODE_ENV=production npm run build",
"build:watch": "npm build -w",
"dev": "npm run build:watch"
},
"repository": "https://github.com/samooth/paymail-client",
"author": "Fermatted Drives Limited and Tomás Díaz",
"license": "Open-BSV",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@samooth/brfc": "^0.39.0",
"bsv2": "^2.1.2",
"cross-fetch": "4.1.0",
"http-status-codes": "^2.3.0",
"moment": "2.30.1",
"pure-cache": "^1.0.6"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/register": "^7.25.9",
"bdd-lazy-var": "2.6.1",
"chai": "^5.2.0",
"dotenv-cli": "8.0.0",
"eslint": "^9.24.0",
"events": "^3.3.0",
"http-server": "14.1.1",
"process": "^0.11.10",
"should": "13.2.3",
"standard": "17.1.2",
"vite": "^6.2.6",
"vite-plugin-node-polyfills": "^0.23.0",
"vitest": "^3.1.1"
},
"standard": {
"globals": [
"afterEach",
"beforeEach",
"describe",
"it"
],
"ignore": [
"docs/"
]
}
}