forked from bbondy/bloom-filter-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 868 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 868 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
36
37
{
"name": "bloom-filter-cpp",
"main": "./build/Release/bloom-filter-cpp",
"version": "1.1.1",
"description": "",
"directories": {
"test": "test"
},
"dependencies": {
"node-gyp": "^3.2.1"
},
"devDependencies": {
"cppunitlite": "^1.0.0",
"nan": "^2.1.0",
"node-gyp": "^3.2.1",
"pre-commit": "^1.1.2"
},
"scripts": {
"test": "make test",
"lint": "./scripts/cpplint.py",
"install": "node-gyp rebuild"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bbondy/bloom-filter-cpp.git"
},
"author": "Brian R. Bondy <netzen@gmail.com> (http://www.brianbondy.com)",
"license": "MPL-2.0",
"gypfile": true,
"bugs": {
"url": "https://github.com/bbondy/bloom-filter-cpp/issues"
},
"homepage": "https://github.com/bbondy/bloom-filter-cpp#readme",
"pre-commit": [
"lint"
]
}