{
  "name": "aion-rlp",
  "version": "0.0.1",
  "description": "Aion Flavoured Recursive Length Prefix Encoding Module",
  "main": "index.js",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "coverage": "istanbul cover _mocha",
    "coveralls": "npm run coverage && coveralls <coverage/lcov.info",
    "lint": "standard",
    "test": "istanbul test mocha -- --reporter spec"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/aionnetwork/aion_rlp.js.git"
  },
  "keywords": [
    "rlp",
    "ethereum",
    "aion"
  ],
  "author": {
    "name": "martin becze",
    "email": "mjbecze@gmail.com"
  },
  "contributors": [
    "Holger Drewes <Holger.Drewes@gmail.com>",
    "Yao Sun <mr.sun.yao@gmail.com>",
    "Joey Ho <joey@aion.network>"
  ],
  "license": "MPL-2.0",
  "bugs": {
    "url": "https://github.com/aionnetwork/aion_rlp.js/issues"
  },
  "dependencies": {
    "bn.js": "^4.11.8",
    "safe-buffer": "^5.1.2"
  },
  "devDependencies": {
    "chai": "^4.1.2",
    "coveralls": "^2.13.3",
    "istanbul": "^0.4.2",
    "mocha": "^2.3.4",
    "standard": "^6.0.8"
  },
  "bin": {
    "rlp": "./bin/rlp"
  },
  "testling": {
    "files": "test/*.js",
    "harness": "mocha-bdd",
    "browsers": [
      "chrome/22..latest",
      "firefox/16..latest",
      "safari/latest",
      "opera/11.0..latest",
      "iphone/6",
      "ipad/6",
      "android-browser/latest"
    ]
  },
  "standard": {
    "globals": [
      "describe",
      "it"
    ]
  }
}
