-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 981 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 981 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
{
"name": "javascript-algorithms-data-structures",
"version": "1.0.0",
"description": "The goal that the repository is learning algorithms and data structure in Javascript. Learn about algorithms in data structure is very important. The motivation is the algorithms and data structure enable you the resolve many commons problems efficiently.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cjvaz/javascript-algorithms-data-structures.git"
},
"keywords": [],
"author": "Carlos Vaz <carlosjvaz@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/cjvaz/javascript-algorithms-data-structures/issues"
},
"homepage": "https://github.com/cjvaz/javascript-algorithms-data-structures#readme",
"scripts": {
"test": "mocha test/**/*spec.js",
"xtest": "mocha test/data-structures/heap.spec.js"
},
"dependencies": {
"chai": "^4.2.0",
"mocha": "^7.0.1"
},
"devDependencies": {}
}