UNPKG

1.2 kBJSONView Raw
1{
2 "name": "ecurve",
3 "version": "1.0.1",
4 "description": "Elliptic curve cryptography",
5 "keywords": [
6 "cryptography",
7 "crypto",
8 "bitcoin",
9 "litecoin",
10 "elliptic",
11 "curve"
12 ],
13 "devDependencies": {
14 "coveralls": "^2.10.0",
15 "istanbul": "^0.2.10",
16 "jshint": "2.5.1",
17 "mocha": "^1.20.0",
18 "mocha-lcov-reporter": "0.0.1",
19 "mochify": "^0.4.2"
20 },
21 "repository": {
22 "url": "https://github.com/cryptocoinjs/ecurve",
23 "type": "git"
24 },
25 "main": "./lib/index.js",
26 "scripts": {
27 "coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter list test/*.js",
28 "coveralls": "npm run-script coverage && node ./node_modules/.bin/coveralls < coverage/lcov.info",
29 "jshint": "./node_modules/.bin/jshint --config jshint.json lib/*.js ; true",
30 "test": "mocha --ui bdd",
31 "unit": "./node_modules/.bin/mocha"
32 },
33 "dependencies": {
34 "bigi": "^1.1.0"
35 },
36 "testling": {
37 "harness": "mocha",
38 "files": "test/*.js",
39 "browsers": [
40 "ie/9..latest",
41 "chrome/latest",
42 "safari/6..latest",
43 "firefox/latest",
44 "iphone/6..latest",
45 "android-browser/4.2..latest"
46 ]
47 }
48}