-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.21 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.21 KB
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
48
49
50
51
52
{
"name": "ml-hash-table",
"version": "1.0.0",
"description": "Open addressing hash table",
"main": "HashTable.js",
"module": "src/HashTable.js",
"scripts": {
"compile": "rollup -c",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "npm run compile",
"test": "npm run test-coverage && npm run eslint",
"test-only": "jest",
"test-coverage": "jest --coverage"
},
"files": [
"src",
"HashTable.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mljs/hash-table.git"
},
"keywords": [
"open",
"addressing",
"closed",
"hashing",
"double",
"hash",
"table"
],
"author": "Michaël Zasso",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/hash-table/issues"
},
"homepage": "https://github.com/mljs/hash-table#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"eslint": "^6.0.1",
"eslint-config-cheminfo": "^1.20.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.1",
"jest": "^24.8.0",
"rollup": "^1.16.3"
},
"dependencies": {
"binary-search": "^1.3.5",
"num-sort": "^2.0.0"
}
}