{
  "name": "ecurve",
  "version": "1.0.2",
  "description": "Elliptic curve cryptography",
  "keywords": [
    "cryptography",
    "crypto",
    "bitcoin",
    "litecoin",
    "elliptic",
    "curve"
  ],
  "license": "MIT",
  "devDependencies": {
    "coveralls": "^2.10.0",
    "istanbul": "^0.2.10",
    "jshint": "2.5.1",
    "mocha": "^1.20.0",
    "mocha-lcov-reporter": "0.0.1",
    "mochify": "^0.4.2"
  },
  "repository": {
    "url": "https://github.com/cryptocoinjs/ecurve",
    "type": "git"
  },
  "main": "./lib/index.js",
  "scripts": {
    "coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter list test/*.js",
    "coveralls": "npm run-script coverage && node ./node_modules/.bin/coveralls < coverage/lcov.info",
    "jshint": "./node_modules/.bin/jshint --config jshint.json lib/*.js ; true",
    "test": "mocha --ui bdd",
    "unit": "./node_modules/.bin/mocha"
  },
  "dependencies": {
    "bigi": "^1.1.0"
  },
  "testling": {
    "harness": "mocha",
    "files": "test/*.js",
    "browsers": [
      "ie/9..latest",
      "chrome/latest",
      "safari/6..latest",
      "firefox/latest",
      "iphone/6..latest",
      "android-browser/4.2..latest"
    ]
  }
}
