forked from bbondy/bloom-filter-cpp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 840 Bytes
/
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
{
"name": "bloom-filter-cpp",
"main": "./build/Release/bloom-filter-cpp",
"version": "1.1.8",
"description": "",
"directories": {
"test": "test"
},
"dependencies": {},
"devDependencies": {
"cppunitlite": "^1.0.0",
"nan": "^2.2.1",
"node-gyp": "^3.4.0",
"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 <[email protected]> (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"
]
}