Browse Source

Merge pull request #324 from bitcoinjs/notestling

package: remove testling
hk-custom-address
Wei Lu 10 years ago
parent
commit
c9137a2a24
  1. 2
      README.md
  2. 45
      package.json

2
README.md

@ -6,8 +6,6 @@
[![NPM](https://nodei.co/npm/bitcoinjs-lib.png)](https://nodei.co/npm/bitcoinjs-lib/)
[![Browser Support](https://ci.testling.com/bitcoinjs/bitcoinjs-lib.png)](https://ci.testling.com/bitcoinjs/bitcoinjs-lib)
The pure JavaScript Bitcoin library for node.js and browsers.
A continued implementation of the original `0.1.3` version used by over a million wallet users; the backbone for almost all Bitcoin web wallets in production today.

45
package.json

@ -31,35 +31,6 @@
"url": "http://www.justmoon.net"
}
],
"repository": {
"type": "git",
"url": "https://github.com/bitcoinjs/bitcoinjs-lib.git"
},
"devDependencies": {
"browserify": "^5.12.0",
"bs58": "^2.0.0",
"coveralls": "^2.11.2",
"helloblock-js": "^0.2.5",
"istanbul": "^0.3.2",
"jshint": "^2.5.6",
"mocha": "^1.21.4",
"mocha-lcov-reporter": "0.0.1",
"sinon": "^1.10.3",
"uglify-js": "^2.4.15"
},
"testling": {
"browsers": [
"android-browser/4.2..latest",
"chrome/20..latest",
"firefox/21..latest",
"ipad/6..latest",
"iphone/6..latest",
"opera/15..latest",
"safari/latest"
],
"harness": "mocha-bdd",
"files": "test/*.js"
},
"scripts": {
"compile": "browserify ./src/index.js -s bitcoin | uglifyjs > bitcoinjs-min.js",
"coverage": "istanbul cover _mocha -- test/*.js",
@ -69,6 +40,10 @@
"test": "npm run-script unit",
"unit": "istanbul test mocha -- --reporter list test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bitcoinjs/bitcoinjs-lib.git"
},
"browser": {
"crypto": "crypto-browserify"
},
@ -77,5 +52,17 @@
"bs58check": "1.0.3",
"crypto-browserify": "^3.2.6",
"ecurve": "1.0.0"
},
"devDependencies": {
"browserify": "^5.12.0",
"bs58": "^2.0.0",
"coveralls": "^2.11.2",
"helloblock-js": "^0.2.5",
"istanbul": "^0.3.2",
"jshint": "^2.5.6",
"mocha": "^1.21.4",
"mocha-lcov-reporter": "0.0.1",
"sinon": "^1.10.3",
"uglify-js": "^2.4.15"
}
}

Loading…
Cancel
Save