forked from crizstian/data-structure-and-algorithms-with-ES6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 757 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
{
"name": "data-structures-with-es6",
"version": "1.0.0",
"description": "Data Structures and Algorithims with ES6",
"main": "index.js",
"scripts": {
"test": "qunit -t test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Crizstian/data-structure-and-algorithms-with-ES6.git"
},
"keywords": [
"Data",
"Structures",
"ES6",
"Algorithms",
"Prototypal",
"Object",
"Inheritance"
],
"author": "Cristian Ramirez",
"license": "ISC",
"bugs": {
"url": "https://github.com/Crizstian/data-structure-and-algorithms-with-ES6/issues"
},
"homepage": "https://github.com/Crizstian/data-structure-and-algorithms-with-ES6#readme",
"devDependencies": {
"qunit": "^0.9.1"
}
}