38 lines
935 B
JSON
38 lines
935 B
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": "*",
|
|
"node-browserify": "https://github.com/substack/node-browserify/tarball/master"
|
|
},
|
|
|
|
"testling": {
|
|
"browsers": ["ie/9..latest", "firefox/15..latest", "chrome/22..latest"],
|
|
"harness" : "mocha-qunit",
|
|
"files": "test/*.js"
|
|
},
|
|
|
|
"scripts": {
|
|
"test": "istanbul test ./node_modules/.bin/_mocha -- --reporter list test/*.js",
|
|
"compile": "browserify src/index.js -s Bitcoin | uglifyjs > bitcoinjs-min.js"
|
|
}
|
|
}
|