bitcoinjs-lib/package.json

83 lines
2 KiB
JSON
Raw Normal View History

2011-09-26 17:35:29 +01:00
{
"name": "bitcoinjs-lib",
"version": "1.0.2",
2011-09-26 17:35:29 +01:00
"description": "Client-side Bitcoin JavaScript library",
"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"
}
],
"repository": {
"type": "git",
"url": "https://github.com/bitcoinjs/bitcoinjs-lib.git"
2011-09-26 17:35:29 +01:00
},
"devDependencies": {
"browserify": "^4.2.1",
2014-04-08 11:02:36 -04:00
"coveralls": "~2.10.0",
"helloblock-js": "^0.2.1",
2014-06-21 18:12:05 +10:00
"istanbul": "0.1.30",
"jshint": "2.5.1",
"mocha": "1.18.2",
"mocha-lcov-reporter": "0.0.1",
"sinon": "1.9.0",
"uglify-js": "2.4.13"
},
2013-02-17 00:43:43 -05:00
"testling": {
"browsers": [
2014-06-21 18:12:05 +10:00
"android-browser/4.2..latest",
"chrome/20..latest",
2014-03-20 16:01:39 -07:00
"firefox/21..latest",
"ipad/6..latest",
2014-06-21 18:12:05 +10:00
"iphone/6..latest",
"opera/15..latest",
"safari/latest"
],
"harness": "mocha-bdd",
2013-02-17 00:43:43 -05:00
"files": "test/*.js"
},
"scripts": {
2014-07-16 01:35:05 +08:00
"compile": "browserify ./src/index.js -s Bitcoin | uglifyjs > bitcoinjs-min.js",
2014-07-16 09:55:24 +08:00
"coverage": "istanbul cover _mocha -- test/*.js",
"coveralls": "npm run-script coverage && coveralls < coverage/lcov.info",
2014-07-16 01:35:05 +08:00
"integration": "mocha --reporter list test/integration/*.js",
"jshint": "jshint --config jshint.json src/*.js ; true",
2014-06-21 18:12:05 +10:00
"test": "npm run-script unit",
2014-07-16 03:53:22 +10:00
"unit": "istanbul test mocha -- --reporter list test/*.js"
2014-03-08 13:02:40 +08:00
},
2014-06-26 19:26:54 +10:00
"browser": {
"crypto": "crypto-browserify"
},
2014-03-08 13:02:40 +08:00
"dependencies": {
2014-05-13 19:10:20 +10:00
"bigi": "1.1.0",
2014-07-25 11:20:23 +10:00
"bs58": "1.2.1",
"bs58check": "1.0.1",
"crypto-js": "3.1.2-3",
2014-07-25 11:20:23 +10:00
"crypto-browserify": "3.0.0",
2014-07-28 13:48:00 +10:00
"ecurve": "1.0.0"
2011-09-26 17:35:29 +01:00
}
}