This repository was archived by the owner on Apr 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.71 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
89
90
91
92
93
{
"name": "bitcoin-computer-bitcore",
"version": "0.1.24",
"description": "A simple, safe, and powerful JavaScript Bitcoin library.",
"author": "Clemens Ley <ley.clemens@gmail.com>",
"license": "MIT",
"main": "dist/bitcoin-computer-bitcore.common.js",
"module": "dist/bitcoin-computer-bitcore.esm.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "mocha --experimental-json-modules --recursive --timeout 7000 --require @babel/register",
"test:cover": "nyc mocha",
"lint": "eslint src test",
"lint-fix": "eslint src test --fix",
"flow": "flow check",
"clean": "rm -rf dist",
"docs": "mustache package.json README.tpl.md > README.md",
"preversion": "npm run clean && npm run lint && npm run flow && npm run test",
"version": "npm run build && npm run docs && git add README.md",
"postversion": "git push && git push --tags && npm publish",
"bump": "npm version patch -m 'Bump version to %s.'"
},
"keywords": [
"bitcoin",
"source",
"transaction",
"address",
"p2p",
"cryptocurrency",
"blockchain",
"payment",
"multisig"
],
"repository": {
"type": "git",
"url": "https://github.com/bitcoin-computer/bitcoin-source"
},
"prettier": {
"printWidth": 100,
"proseWrap": "preserve",
"semi": false,
"singleQuote": true
},
"dependencies": {
"big-integer": "^1.6.48",
"bn.js": "4.12.0",
"bs58": "=4.0.1",
"buffer-compare": "=1.1.1",
"cashaddrjs": "^0.4.4",
"elliptic": "^6.5.3",
"hash.js": "^1.1.7",
"lodash": "^4.17.15",
"randombytes": "^2.1.0",
"unorm": "^1.6.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-flow": "^7.9.0",
"@babel/register": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-preset-minify": "^0.5.1",
"chai": "^4.2.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-flowtype": "^5.1.0",
"eslint-plugin-flowtype-errors": "^4.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"flow-bin": "^0.157.0",
"flow-typed": "^3.1.0",
"jsdoc": "^3.6.4",
"mocha": "^9.0.3",
"mustache": "^4.0.1",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"rollup": "^2.10.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^11.1.2"
}
}