-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 924 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
{
"name": "binary-type-tree",
"version": "1.3.0",
"description": "Binary Trees written in TypeScript",
"main": "lib/index.js",
"scripts": {
"test": "jest --no-cache --config=./__tests__/jest.json",
"build": "rm -rf ./lib/* && tsc",
"docs": "typedoc --excludeExternals true --exclude '**/*+(spec|index).ts' --out docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcusjwhelan/binary-type-tree.git"
},
"keywords": [
"Binary",
"Tree",
"TypeScript"
],
"author": "Marcus J Whelan",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcusjwhelan/binary-type-tree/issues"
},
"homepage": "https://github.com/marcusjwhelan/binary-type-tree#readme",
"dependencies": {
"tedb-utils": "^0.0.1"
},
"devDependencies": {
"@types/jest": "^19.2.3",
"jest": "^20.0.3",
"typescript": "^2.2.2"
},
"types": "lib/index.d.ts"
}