-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.05 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"_from": "bitcoincashjs",
"_id": "[email protected]",
"_inBundle": false,
"_integrity": "sha512-M4SiYYZEWUqWyp2ZE+imxP6Pgm15B4GIU+PvRo1ISvlgnxrwUANEVWAIW5+tam5MD3sO+XqnfK14ymRw14nCFQ==",
"_location": "/bitcoincashjs",
"_phantomChildren": {},
"_requested": {
"type": "tag",
"registry": true,
"raw": "bitcoincashjs",
"name": "bitcoincashjs",
"escapedName": "bitcoincashjs",
"rawSpec": "",
"saveSpec": null,
"fetchSpec": "latest"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/bitcoincashjs/-/bitcoincashjs-0.1.10.tgz",
"_shasum": "be69e215474245996a6d74984984b7e8ab9da1af",
"_spec": "bitcoincashjs",
"_where": "/home/user/code/bch-tx-test",
"author": {
"name": "Emilio Almansi",
"email": "[email protected]"
},
"browser": {
"request": "browser-request"
},
"bugs": {
"url": "https://github.com/bitcoincashjs/bitcoincashjs/issues"
},
"bundleDependencies": false,
"dependencies": {
"big-integer": "^1.6.26",
"bn.js": "=2.0.4",
"bs58": "=2.0.0",
"buffer-compare": "=1.0.0",
"cashaddrjs": "^0.2.8",
"elliptic": "=3.0.3",
"inherits": "=2.0.1",
"lodash": "^4.17.4",
"unorm": "^1.4.1"
},
"deprecated": false,
"description": "A simple, safe, and powerful JavaScript Bitcoin Cash library.",
"devDependencies": {
"brfs": "^1.4.3",
"browserify": "^14.5.0",
"chai": "^1.10.0",
"coveralls": "^3.0.0",
"jsdoc": "^3.5.5",
"jshint": "^2.9.5",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-detect-browsers": "^2.2.6",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"mocha": "^4.1.0",
"mustache": "^2.3.0",
"nyc": "^11.4.1",
"shelljs": "^0.8.0",
"sinon": "^1.13.0",
"uglify-js": "^3.3.4"
},
"files": [
"src/",
"dist/"
],
"homepage": "https://github.com/bitcoincashjs/bitcoincashjs#readme",
"keywords": [
"bitcoin",
"transaction",
"address",
"p2p",
"ecies",
"cryptocurrency",
"blockchain",
"payment",
"bip21",
"bip32",
"bip37",
"bip69",
"bip70",
"multisig"
],
"license": "MIT",
"main": "src/bitcoincash.js",
"name": "bitcoincashjs",
"repository": {
"type": "git",
"url": "git+https://github.com/bitcoincashjs/bitcoincashjs.git"
},
"scripts": {
"build": "node scripts/build.js",
"build:tests": "node scripts/build-tests.js",
"bump": "npm version patch -m 'Bump version to %s.'",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "node scripts/lint.js",
"postversion": "git push && git push --tags && npm publish",
"preversion": "npm test",
"readme": "mustache package.json README.tpl.md > README.md",
"test": "npm run test:node",
"test:all": "npm run test:node && npm run test:browser",
"test:browser": "npm run build:tests && karma start",
"test:node": "nyc --reporter=html --reporter=text mocha",
"version": "npm run build && npm run readme && git add -A dist README.md"
},
"version": "0.1.10"
}