-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 747 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 747 Bytes
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
{
"name": "ternary-search-tree",
"version": "1.0.8",
"description": "A ternary search tree for Node.js",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha tests/**/*test.js --reporter spec",
"docs": "./node_modules/.bin/jsdoc -c jsdoc.json"
},
"keywords": [
"ternary",
"search",
"tree",
"trie",
"tst"
],
"author": "Matthew Page",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/mattpage/ternary-search-tree.git"
},
"devDependencies": {
"chai": "^3.0.0",
"jsdoc": "^0.0.0",
"lodash": "^4.17.23",
"minimist": ">=1.2.6",
"mocha": "^11.1.0",
"word-list": "^1.0.0"
}
}