-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
37 lines (37 loc) · 847 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
36
37
{
"name": "minhash",
"version": "0.0.9",
"author": "Douglas Duhaime <[email protected]>",
"description": "Find similar documents quickly",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha ./tests/*.js",
"build": "./node_modules/webpack/bin/webpack.js --config ./webpack.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/duhaime/minhash.git"
},
"keywords": [
"minhash",
"locality-sensitive-hashing",
"lsh",
"text-mining"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"mocha": "^3.1.2",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.10"
},
"dependencies": {},
"babel": {
"presets": [
"env"
]
}
}