forked from cryptocoinjs/ecurve
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"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"
]
}
}