forked from syzer/level-naive-bayes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "syzer-level-naive-bayes",
"version": "1.2.4",
"description": "Bayes text classifier that runs on top of leveldb",
"main": "index-es5.js",
"dependencies": {
"after-all": "^2.0.2",
"bluebird": "~3.0.5",
"mutexify": "^1.0.1",
"pump": "^1.0.1",
"through2": "~2.0.0"
},
"devDependencies": {
"codecov.io": "^0.1.6",
"istanbul": "^0.4.0",
"memdb": "~1.0.1",
"pre-commit": "^1.1.2",
"tape": "~4.2.2"
},
"scripts": {
"test": "tape ./test/test.js",
"coverage": "./node_modules/.bin/istanbul cover ./test/test.js && cat ./coverage/lcov.info | ./node_modules/.bin/codecov",
"prepublish": "babel index.js --out-file index-es5.js"
},
"pre-commit": [
"test", "prepublish"
],
"repository": {
"type": "git",
"url": "https://github.com/syzer/level-naive-bayes"
},
"author": "Mathias Buus (@mafintosh), Lukasz Gintowt (@syzer3)",
"license": "MIT",
"bugs": {
"url": "https://github.com/syzer/level-naive-bayes/issues"
},
"homepage": "https://github.com/syzer/level-naive-bayes",
"engine": ">=0.12"
}