-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 777 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 777 Bytes
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
{
"name": "ssdeep",
"version": "0.1.1",
"description": "Node.js wrapper for the ssdeep fuzzy hashing library",
"license": "MIT",
"keywords": [
"fuzzy",
"hash",
"ssdeep"
],
"author": "Paul Chaignon <paul.chaignon@gmail.com>",
"main": "src/index.js",
"scripts": {
"test": "mocha test"
},
"homepage": "https://github.com/pchaigno/node-ssdeep",
"repository": {
"type": "git",
"url": "https://github.com/pchaigno/node-ssdeep.git"
},
"bugs": {
"url": "http://github.com/pchaigno/node-ssdeep/issues"
},
"dependencies": {
"ffi": "^2.0.0",
"ref": "^1.3.2"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"fs": "0.0.2",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0"
}
}