bitcoinjs-lib/package.json

54 lines
1.6 KiB
JSON
Raw Normal View History

2011-09-26 18:35:29 +02:00
{
"name": "bitcoinjs-lib",
2014-04-06 03:11:57 +02:00
"version": "0.2.0",
2011-09-26 18:35:29 +02:00
"description": "Client-side Bitcoin JavaScript library",
"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)",
"repository": {
"type": "git",
"url": "https://github.com/bitcoinjs/bitcoinjs-lib.git"
2011-09-26 18:35:29 +02:00
},
"devDependencies": {
2014-03-21 03:14:32 +01:00
"mocha": "1.18.2",
"istanbul": "0.1.30",
"uglify-js": "2.4.13",
2014-03-23 18:29:10 +01:00
"node-browserify": "https://github.com/substack/node-browserify/tarball/master",
2014-04-08 17:02:36 +02:00
"sinon": "1.9.0",
"coveralls": "~2.10.0",
"mocha-lcov-reporter": "0.0.1",
"helloblock-js": "^0.2.1",
"request": "~2.34.0"
},
2013-02-17 06:43:43 +01:00
"testling": {
"browsers": [
"chrome/20..latest",
2014-03-21 00:01:39 +01:00
"firefox/21..latest",
"safari/latest",
2014-03-21 00:01:39 +01:00
"opera/15..latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/4.2..latest"
],
"harness": "mocha-bdd",
2013-02-17 06:43:43 +01:00
"files": "test/*.js"
},
"scripts": {
2014-05-13 15:50:44 +02: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 08:25:34 +02:00
"integration": "./node_modules/.bin/_mocha --reporter list test/integration/*.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-05-03 04:04:54 +02:00
"bigi": "1.0.0",
"crypto-js": "3.1.2-3",
2014-03-21 02:54:10 +01:00
"secure-random": "0.2.1"
2011-09-26 18:35:29 +02:00
}
}