-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
75 lines (75 loc) · 2.01 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
{
"name": "@moneybutton/paymail-client",
"version": "0.39.0",
"description": "Money Button isomorphic Paymail utilities.",
"main": "dist/paymail-client.cjs.js",
"module": "dist/paymail-client.esm.js",
"unpkg": "dist/paymail-client.iife.js",
"library": "PaymailClient",
"files": [
"dist/**"
],
"scripts": {
"lint": "standard --parser=babel-eslint",
"test": "mocha",
"test:ci": "mocha",
"build": "rollup -c",
"build:dev": "rollup -c",
"build:prod": "NODE_ENV=production yarn build",
"build:watch": "yarn build -w",
"dev": "yarn build:watch"
},
"repository": "https://github.com/moneybutton/paymail-client",
"author": "Fermatted Drives Limited",
"license": "Open-BSV",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@babel/runtime": "7.5.5",
"@moneybutton/brfc": "^0.38.9",
"abort-controller": "3.0.0",
"bsv": "2.0.7",
"http-status-codes": "^2.1.4",
"isomorphic-fetch": "2.2.1",
"moment": "2.24.0",
"pure-cache": "^1.0.6"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/plugin-proposal-object-rest-spread": "7.5.5",
"@babel/plugin-transform-runtime": "7.5.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "7.5.5",
"@babel/register": "^7.18.9",
"@rollup/plugin-commonjs": "11.0.1",
"@rollup/plugin-node-resolve": "7.0.0",
"@rollup/plugin-replace": "2.3.0",
"babel-eslint": "9.0.0",
"bdd-lazy-var": "2.5.1",
"chai": "4.2.0",
"dotenv-cli": "2.0.1",
"http-server": "0.12.3",
"mocha": "6.2.3",
"rollup": "1.29.0",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-terser": "5.2.0",
"should": "13.2.1",
"standard": "12.0.1"
},
"standard": {
"globals": [
"afterEach",
"beforeEach",
"describe",
"it"
],
"ignore": [
"docs/"
]
},
"gitHead": "3ac0d2f8bdcd9bbb7b9934b30e92380c6600c95a"
}