-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.24 KB
/
package.json
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
{
"name": "safe-compare",
"version": "1.1.3",
"description": "Constant-time comparison algorithm to prevent timing attacks.",
"main": "index.js",
"scripts": {
"test": "mocha",
"posttest": "matcha",
"test-travis": "node --harmony node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -u exports",
"coveralls": "node ./node_modules/.bin/coveralls < ./coverage/lcov.info",
"codeclimate": "node ./node_modules/.bin/codeclimate-test-reporter < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bruce17/safe-compare.git"
},
"keywords": [
"safe-compare",
"secure-compare",
"compare",
"time-equivalent-comparison",
"time",
"equivalent",
"timing",
"attack",
"constant-time",
"constant",
"time"
],
"author": "Michael Raith",
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/Bruce17/safe-compare/issues"
},
"homepage": "https://github.com/Bruce17/safe-compare#readme",
"devDependencies": {
"coveralls": "^2.11.14",
"istanbul": "^0.4.5",
"matcha": "^0.7.0",
"mocha": "^3.1.2"
},
"dependencies": {
"buffer-alloc-unsafe": "1.1.0"
}
}