-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1 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
{
"name": "meta-trie",
"version": "1.0.2",
"description": "A key-value store utilising the filesystem.",
"engines": {
"node": ">=8.9.0"
},
"main": "index.js",
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"test": "node test.js | node node_modules/faucet/bin/cmd",
"docs": "node node_modules/jsdoc/jsdoc.js -c jsdoc.json",
"benchmark": "node benchmark.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walasek/node-meta-trie.git"
},
"keywords": [
"nodejs",
"tree",
"trie"
],
"author": "Karol Walasek <coreconviction@gmail.com>",
"bugs": {
"url": "https://github.com/walasek/node-meta-trie/issues"
},
"homepage": "https://github.com/walasek/node-meta-trie#readme",
"license": "MIT",
"devDependencies": {
"docdash": "^1",
"faucet": "0.0.3",
"glob": "^8",
"jsdoc": "^3",
"nodemark": "^0.3",
"nyc": "^15",
"zora": "^4"
},
"dependencies": {
"debug": "^4"
}
}