UNPKG

588 BJSONView Raw
1{
2 "name": "ecurve",
3 "version": "1.0.4",
4 "description": "Elliptic curve cryptography",
5 "keywords": [
6 "cryptography",
7 "crypto",
8 "bitcoin",
9 "litecoin",
10 "elliptic",
11 "curve"
12 ],
13 "license": "MIT",
14 "devDependencies": {
15 "mocha": "^2.5.3",
16 "standard": "^7.1.2"
17 },
18 "repository": {
19 "url": "https://github.com/cryptocoinjs/ecurve",
20 "type": "git"
21 },
22 "main": "./lib/index.js",
23 "scripts": {
24 "lint": "standard",
25 "test": "npm run lint && npm run unit",
26 "unit": "mocha --ui bdd"
27 },
28 "dependencies": {
29 "bigi": "^1.1.0"
30 }
31}