-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 987 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
38
39
40
41
42
43
44
45
46
47
{
"name": "rankerjs",
"version": "0.0.1",
"description": "An npm package to rank data and return the top n results in an array with the highest ranked items first",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --recursive"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/sahmmie/rankerjs.git"
},
"keywords": [
"rankerjs",
"ranking",
"ranker",
"rank",
"package",
"npm",
"node",
"javascript",
"data",
"ranking",
"ranking-algorithm",
"ranking-algorithms",
"ranking-algorithm-js",
"array-ranking"
],
"bugs": {
"url": "https://github.com/sahmmie/rankerjs/issues",
"email": "[email protected]"
},
"author": "Ibrahim Samson",
"license": "MIT",
"private": false,
"engines": {
"node": ">=6.0.0"
},
"engineStrict": true,
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^9.2.0"
}
}