UNPKG

3.02 kBJSONView Raw
1{
2 "name": "bsv",
3 "description": "Javascript library for Bitcoin SV (BSV).",
4 "version": "2.0.10",
5 "author": "Yours Inc.",
6 "homepage": "https://github.com/moneybutton/bsv",
7 "source": "entry.js",
8 "main": "dist/bsv.cjs.js",
9 "module": "dist/bsv.module.js",
10 "unpkg": "dist/bsv.bundle.js",
11 "library": "bsvjs",
12 "scripts": {
13 "clean": "rm -rf node_modules/* yarn.lock",
14 "lint": "standard *.js lib/**/*.js bin/**/*.js test/**/*.js",
15 "pretest": "yarn run lint",
16 "test:mocha": "mocha",
17 "test:karma": "karma start --single-run",
18 "test": "yarn run test:mocha && yarn run test:karma",
19 "build": "webpack",
20 "prepublish": "yarn build",
21 "prepack": "yarn build",
22 "doc": "documentation build entry.js -f html -o doc"
23 },
24 "contributors": [
25 {
26 "name": "Daniel Cousens",
27 "email": "bitcoin@dcousens.com"
28 },
29 {
30 "name": "Gordon Hall",
31 "email": "gordon@bitpay.com"
32 },
33 {
34 "name": "Jeff Garzik",
35 "email": "jgarzik@bitpay.com"
36 },
37 {
38 "name": "Kyle Drake",
39 "email": "kyle@kyledrake.net"
40 },
41 {
42 "name": "Manuel Araoz",
43 "email": "manuelaraoz@gmail.com"
44 },
45 {
46 "name": "Matias Alejo Garcia",
47 "email": "ematiu@gmail.com"
48 },
49 {
50 "name": "Ryan X. Charles",
51 "email": "ryanxcharles@gmail.com"
52 },
53 {
54 "name": "Stefan Thomas",
55 "email": "moon@justmoon.net"
56 },
57 {
58 "name": "Stephen Pair",
59 "email": "stephen@bitpay.com"
60 },
61 {
62 "name": "Wei Lu",
63 "email": "luwei.here@gmail.com"
64 },
65 {
66 "name": "Josh Ellithorpe",
67 "email": "quest@mac.com"
68 }
69 ],
70 "keywords": [
71 "bitcoin",
72 "bsv",
73 "blockchain",
74 "bip32",
75 "bip39",
76 "bip68",
77 "multisig",
78 "ecies"
79 ],
80 "repository": {
81 "type": "git",
82 "url": "https://github.com/moneybutton/bsv.git"
83 },
84 "engines": {
85 "node": ">=8.0.0"
86 },
87 "dependencies": {
88 "aes": "0.1.0",
89 "bitcoin-elliptic": "^7.0.1",
90 "bn.js": "^5.1.1",
91 "bs58": "4.0.1",
92 "buffer": "^6.0.3",
93 "chai": "^4.2.0",
94 "hash.js": "^1.1.7",
95 "is-hex": "1.1.3",
96 "pbkdf2": "3.1.1",
97 "randombytes": "^2.1.0"
98 },
99 "devDependencies": {
100 "@babel/core": "7.14.3",
101 "@babel/plugin-transform-runtime": "^7.9.6",
102 "@babel/polyfill": "^7.12.1",
103 "@babel/preset-env": "7.14.2",
104 "@babel/register": "^7.9.0",
105 "@babel/runtime": "^7.9.6",
106 "assert": "2.0.0",
107 "babel-loader": "8.2.2",
108 "documentation": "^13.1.1",
109 "karma": "^6.3.2",
110 "karma-chrome-launcher": "^3.1.0",
111 "karma-firefox-launcher": "^2.1.0",
112 "karma-mocha": "^2.0.1",
113 "karma-webpack": "^5.0.0",
114 "mocha": "^7.1.2",
115 "npm-link-shared": "^0.5.6",
116 "process": "0.11.10",
117 "should": "^13.2.3",
118 "sinon": "^9.0.2",
119 "standard": "^14.3.4",
120 "util": "0.12.3",
121 "webpack": "^5.37.1",
122 "webpack-cli": "^4.7.0"
123 },
124 "license": "MIT",
125 "standard": {
126 "ignore": [
127 "lib/interp.js",
128 "dist/*"
129 ]
130 }
131}