45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"name": "bitcoinjs-lib",
|
|
"version": "0.1.3",
|
|
"description": "Client-side Bitcoin JavaScript library",
|
|
"main": "./src/index.js",
|
|
"keywords": [
|
|
"bitcoin",
|
|
"browser",
|
|
"client",
|
|
"library"
|
|
],
|
|
"author": "Stefan Thomas <justmoon@members.fsf.org> (http://www.justmoon.net)",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/bitcoinjs/bitcoinjs-lib.git"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "1.8.1",
|
|
"istanbul": "0.1.30",
|
|
"uglify-js": "2.4.13",
|
|
"node-browserify": "https://github.com/substack/node-browserify/tarball/master"
|
|
},
|
|
"testling": {
|
|
"browsers": [
|
|
"ie/8..latest",
|
|
"chrome/20..latest",
|
|
"firefox/15..latest",
|
|
"safari/latest",
|
|
"opera/11.0..latest",
|
|
"iphone/6",
|
|
"ipad/6",
|
|
"android-browser/latest"
|
|
],
|
|
"harness": "mocha-bdd",
|
|
"files": "test/*.js"
|
|
},
|
|
"scripts": {
|
|
"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",
|
|
"compile": "./node_modules/.bin/browserify ./src/index.js -s Bitcoin | ./node_modules/.bin/uglifyjs > bitcoinjs-min.js"
|
|
},
|
|
"dependencies": {
|
|
"crypto-js": "3.1.2-2"
|
|
}
|
|
}
|