-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.2 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.2 KB
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
{
"name": "js-datastructures-algorithms",
"version": "1.0.0",
"description": "js data structures and algorithms",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"test": "ava --verbose",
"test-patterns": "ava --verbose ./problem-solving-patterns/*/*.test.js",
"test-recursion": "ava --verbose ./algorithms/recursion/*.test.js",
"test-search": "ava --verbose ./algorithms/searching/*.test.js",
"test-sort": "ava --verbose ./algorithms/sorting/*.test.js",
"test-data-structures": "ava --verbose ./data-structures/*/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quangnd/js-datastructures-algorithm.git"
},
"keywords": [
"js"
],
"author": "quangnd",
"license": "ISC",
"bugs": {
"url": "https://github.com/quangnd/js-datastructures-algorithm/issues"
},
"homepage": "https://github.com/quangnd/js-datastructures-algorithm#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"ava": "^1.3.1",
"nodemon": "^1.18.10"
},
"dependencies": {},
"ava": {
"require": [
"@babel/register"
]
}
}