2011-09-26 18:35:29 +02:00
|
|
|
{
|
|
|
|
"name": "bitcoinjs-lib",
|
2012-08-26 11:27:01 +02:00
|
|
|
"version": "0.1.3",
|
2011-09-26 18:35:29 +02:00
|
|
|
"description": "Client-side Bitcoin JavaScript library",
|
2013-02-17 06:39:15 +01:00
|
|
|
"main": "./src/index.js",
|
2011-09-26 18:35:29 +02:00
|
|
|
"keywords": [
|
|
|
|
"bitcoin",
|
|
|
|
"browser",
|
|
|
|
"client",
|
|
|
|
"library"
|
|
|
|
],
|
|
|
|
"author": "Stefan Thomas <justmoon@members.fsf.org> (http://www.justmoon.net)",
|
2014-03-03 05:07:30 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/bitcoinjs/bitcoinjs-lib.git"
|
2011-09-26 18:35:29 +02:00
|
|
|
},
|
2014-03-03 05:07:30 +01:00
|
|
|
"devDependencies": {
|
2013-02-19 04:04:43 +01:00
|
|
|
"mocha": "1.8.1",
|
2013-10-07 14:21:00 +02:00
|
|
|
"istanbul": "0.1.30",
|
2014-03-14 13:21:24 +01:00
|
|
|
"uglify-js": "2.4.13",
|
2013-10-07 14:21:00 +02:00
|
|
|
"node-browserify": "https://github.com/substack/node-browserify/tarball/master"
|
2013-02-17 06:39:15 +01:00
|
|
|
},
|
2013-02-17 06:43:43 +01:00
|
|
|
"testling": {
|
2014-03-03 05:07:30 +01:00
|
|
|
"browsers": [
|
|
|
|
"ie/8..latest",
|
|
|
|
"chrome/20..latest",
|
2014-03-14 04:33:37 +01:00
|
|
|
"firefox/15..latest",
|
2014-03-03 05:07:30 +01:00
|
|
|
"safari/latest",
|
|
|
|
"opera/11.0..latest",
|
|
|
|
"iphone/6",
|
|
|
|
"ipad/6",
|
|
|
|
"android-browser/latest"
|
|
|
|
],
|
|
|
|
"harness": "mocha-bdd",
|
2013-02-17 06:43:43 +01:00
|
|
|
"files": "test/*.js"
|
|
|
|
},
|
2013-02-17 06:39:15 +01:00
|
|
|
"scripts": {
|
2014-03-11 20:23:37 +01:00
|
|
|
"test": "./node_modules/.bin/istanbul test ./node_modules/.bin/_mocha -- --reporter list test/*.js",
|
|
|
|
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter list test/*.js",
|
2014-03-14 13:21:05 +01:00
|
|
|
"compile": "./node_modules/.bin/browserify ./src/index.js -s Bitcoin | ./node_modules/.bin/uglifyjs > bitcoinjs-min.js"
|
2014-03-08 06:02:40 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2014-03-20 10:18:45 +01:00
|
|
|
"crypto-js": "3.1.2-2",
|
2014-03-20 10:30:32 +01:00
|
|
|
"secure-random": "0.2.0"
|
2011-09-26 18:35:29 +02:00
|
|
|
}
|
|
|
|
}
|