-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.05 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.05 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
{
"name": "paypresto.js",
"version": "0.1.0-beta.13",
"description": "Build data and complex Bitcoin transactions, and fund them from any wallet.",
"main": "dist/paypresto.js",
"module": "src/index.js",
"unpkg": "dist/paypresto.min.js",
"repository": "https://github.com/libitx/paypresto.js",
"license": "Apache-2.0",
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "mocha \"test/**/*.test.js\" --require esm"
},
"dependencies": {
"energy": "^0.8.0",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@rollup/plugin-babel": "^5.0.3",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"bsv": "2.0.8",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"mocha": "^8.0.1",
"nock": "^12.0.3",
"rollup": "^2.16.1",
"rollup-plugin-banner": "^0.2.1",
"rollup-plugin-terser": "^6.1.0",
"txforge": "^0.2.4"
},
"peerDependencies": {
"bsv": "^2.0",
"txforge": "^0.2.4"
}
}