2011-09-26 17:35:29 +01:00
|
|
|
{
|
|
|
|
"name": "bitcoinjs-lib",
|
2014-04-05 18:11:57 -07:00
|
|
|
"version": "0.2.0",
|
2011-09-26 17:35:29 +01:00
|
|
|
"description": "Client-side Bitcoin JavaScript library",
|
2013-02-17 00:39:15 -05:00
|
|
|
"main": "./src/index.js",
|
2011-09-26 17:35:29 +01:00
|
|
|
"keywords": [
|
|
|
|
"bitcoin",
|
|
|
|
"browser",
|
|
|
|
"client",
|
|
|
|
"library"
|
|
|
|
],
|
2014-06-10 17:48:32 +10:00
|
|
|
"contributors": [
|
|
|
|
{
|
|
|
|
"name": "Daniel Cousens",
|
|
|
|
"email": "bitcoin@dcousens.com",
|
|
|
|
"url": "http://dcousens.com"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Kyle Drake",
|
|
|
|
"email": "kyle@kyledrake.net",
|
|
|
|
"url": "http://kyledrake.net/"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Wei Lu",
|
|
|
|
"email": "luwei.here@gmail.com",
|
|
|
|
"url": "http://weilu.github.io/"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Stefan Thomas",
|
|
|
|
"email": "justmoon@members.fsf.org",
|
|
|
|
"url": "http://www.justmoon.net"
|
|
|
|
}
|
|
|
|
],
|
2014-03-03 12:07:30 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/bitcoinjs/bitcoinjs-lib.git"
|
2011-09-26 17:35:29 +01:00
|
|
|
},
|
2014-03-03 12:07:30 +08:00
|
|
|
"devDependencies": {
|
2014-03-21 10:14:32 +08:00
|
|
|
"mocha": "1.18.2",
|
2013-10-07 08:21:00 -04:00
|
|
|
"istanbul": "0.1.30",
|
2014-03-14 13:21:24 +01:00
|
|
|
"uglify-js": "2.4.13",
|
2014-04-08 11:02:36 -04:00
|
|
|
"sinon": "1.9.0",
|
|
|
|
"coveralls": "~2.10.0",
|
2014-04-26 16:13:03 -07:00
|
|
|
"mocha-lcov-reporter": "0.0.1",
|
2014-05-05 13:46:00 +08:00
|
|
|
"helloblock-js": "^0.2.1",
|
2014-06-04 13:57:07 +10:00
|
|
|
"browserify": "~4.1.5",
|
|
|
|
"jshint": "2.5.1"
|
2013-02-17 00:39:15 -05:00
|
|
|
},
|
2013-02-17 00:43:43 -05:00
|
|
|
"testling": {
|
2014-03-03 12:07:30 +08:00
|
|
|
"browsers": [
|
|
|
|
"chrome/20..latest",
|
2014-03-20 16:01:39 -07:00
|
|
|
"firefox/21..latest",
|
2014-03-03 12:07:30 +08:00
|
|
|
"safari/latest",
|
2014-03-20 16:01:39 -07:00
|
|
|
"opera/15..latest",
|
|
|
|
"iphone/6..latest",
|
|
|
|
"ipad/6..latest",
|
|
|
|
"android-browser/4.2..latest"
|
2014-03-03 12:07:30 +08:00
|
|
|
],
|
|
|
|
"harness": "mocha-bdd",
|
2013-02-17 00:43:43 -05:00
|
|
|
"files": "test/*.js"
|
|
|
|
},
|
2013-02-17 00:39:15 -05:00
|
|
|
"scripts": {
|
2014-05-13 21:50:44 +08:00
|
|
|
"unit": "./node_modules/.bin/istanbul test ./node_modules/.bin/_mocha -- --reporter list `find test -maxdepth 1 -not -type d`",
|
|
|
|
"test": "npm run-script unit",
|
2014-05-04 14:25:34 +08:00
|
|
|
"integration": "./node_modules/.bin/_mocha --reporter list test/integration/*.js",
|
2014-06-04 13:57:07 +10:00
|
|
|
"jshint": "./node_modules/.bin/jshint --config jshint.json src/*.js ; true",
|
2014-03-11 12:23:37 -07:00
|
|
|
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter list test/*.js",
|
2014-05-25 18:06:37 +10:00
|
|
|
"coveralls": "npm run-script coverage && node ./node_modules/.bin/coveralls < coverage/lcov.info",
|
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 13:02:40 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2014-05-13 19:10:20 +10:00
|
|
|
"bigi": "1.1.0",
|
2014-03-22 21:24:16 +08:00
|
|
|
"crypto-js": "3.1.2-3",
|
2014-06-07 16:24:27 +10:00
|
|
|
"ecurve": "0.7.0",
|
2014-03-21 09:54:10 +08:00
|
|
|
"secure-random": "0.2.1"
|
2011-09-26 17:35:29 +01:00
|
|
|
}
|
|
|
|
}
|