-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.03 KB
/
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
48
49
50
{
"name": "icollections",
"version": "3.0.16",
"description": "Typescript Data Structures",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*",
"src/*"
],
"scripts": {
"test": "jest",
"typedoc": "typedoc --out ./docs --mode modules --tsconfig ./tsconfig.json ./src/",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/assuncaocharles/javascript_DataStructure.git"
},
"author": "Charles Assunção",
"license": "MIT",
"bugs": {
"url": "https://github.com/assuncaocharles/javascript_DataStructure/issues"
},
"keywords": [
"data structures",
"collections",
"generic",
"stack",
"linked",
"linked list",
"map",
"queue",
"tree",
"binary tree",
"priority queue",
"set",
"hash",
"hash table"
],
"homepage": "https://github.com/assuncaocharles/javascript_DataStructure#readme",
"devDependencies": {
"@types/jest": "^25.1.0",
"jest": "^24.8.0",
"ts-jest": "^26.1.0",
"typedoc": "^0.17.7",
"typescript": "^3.5.3"
},
"dependencies": {}
}