bitcoinjs-lib/package.json

36 lines
745 B
JSON
Raw Normal View History

2011-09-26 18:35:29 +02:00
{
"name": "bitcoinjs-lib",
2012-08-26 11:27:01 +02:00
"version": "0.1.3",
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"
},
"devDependencies" : {
2013-02-19 04:04:43 +01:00
"mocha": "1.8.1",
"istanbul": "0.1.30"
},
2013-02-17 06:43:43 +01:00
"testling": {
"browsers": ["ie/9..latest", "firefox/15..latest", "chrome/22..latest"],
"harness" : "mocha-qunit",
"files": "test/*.js"
},
"scripts": {
2013-02-19 04:04:43 +01:00
"test": "istanbul test ./node_modules/.bin/_mocha -- --reporter list test/*.js"
2011-09-26 18:35:29 +02:00
}
}