Skip to content

Commit 2e3bb83

Browse files
committed
adds package.json for codesandbox support
1 parent 6586958 commit 2e3bb83

File tree

9 files changed

+207
-0
lines changed

9 files changed

+207
-0
lines changed

bubbleSort/package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "intro-to-data-structures-and-algorithms",
3+
"version": "1.0.0",
4+
"description": "An egghead course to introduce data structures and algorithms in JavaScript",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "jest",
8+
"test:watch": "jest --watch"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms.git"
13+
},
14+
"author": "Kyle Shevlin <kyle.a.shevlin@gmail.com> (http://kyleshevlin.com/)",
15+
"license": "MIT",
16+
"bugs": {
17+
"url": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms/issues"
18+
},
19+
"homepage": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms#readme",
20+
"devDependencies": {
21+
"jest": "^23.6.0"
22+
}
23+
}

graphs/package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "intro-to-data-structures-and-algorithms",
3+
"version": "1.0.0",
4+
"description": "An egghead course to introduce data structures and algorithms in JavaScript",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "jest",
8+
"test:watch": "jest --watch"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms.git"
13+
},
14+
"author": "Kyle Shevlin <kyle.a.shevlin@gmail.com> (http://kyleshevlin.com/)",
15+
"license": "MIT",
16+
"bugs": {
17+
"url": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms/issues"
18+
},
19+
"homepage": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms#readme",
20+
"devDependencies": {
21+
"jest": "^23.6.0"
22+
}
23+
}

insertionSort/package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "intro-to-data-structures-and-algorithms",
3+
"version": "1.0.0",
4+
"description": "An egghead course to introduce data structures and algorithms in JavaScript",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "jest",
8+
"test:watch": "jest --watch"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms.git"
13+
},
14+
"author": "Kyle Shevlin <kyle.a.shevlin@gmail.com> (http://kyleshevlin.com/)",
15+
"license": "MIT",
16+
"bugs": {
17+
"url": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms/issues"
18+
},
19+
"homepage": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms#readme",
20+
"devDependencies": {
21+
"jest": "^23.6.0"
22+
}
23+
}

linkedLists/package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "intro-to-data-structures-and-algorithms",
3+
"version": "1.0.0",
4+
"description": "An egghead course to introduce data structures and algorithms in JavaScript",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "jest",
8+
"test:watch": "jest --watch"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms.git"
13+
},
14+
"author": "Kyle Shevlin <kyle.a.shevlin@gmail.com> (http://kyleshevlin.com/)",
15+
"license": "MIT",
16+
"bugs": {
17+
"url": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms/issues"
18+
},
19+
"homepage": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms#readme",
20+
"devDependencies": {
21+
"jest": "^23.6.0"
22+
}
23+
}

mergeSort/package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "intro-to-data-structures-and-algorithms",
3+
"version": "1.0.0",
4+
"description": "An egghead course to introduce data structures and algorithms in JavaScript",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "jest",
8+
"test:watch": "jest --watch"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms.git"
13+
},
14+
"author": "Kyle Shevlin <kyle.a.shevlin@gmail.com> (http://kyleshevlin.com/)",
15+
"license": "MIT",
16+
"bugs": {
17+
"url": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms/issues"
18+
},
19+
"homepage": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms#readme",
20+
"devDependencies": {
21+
"jest": "^23.6.0"
22+
}
23+
}

queues/package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "intro-to-data-structures-and-algorithms",
3+
"version": "1.0.0",
4+
"description": "An egghead course to introduce data structures and algorithms in JavaScript",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "jest",
8+
"test:watch": "jest --watch"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms.git"
13+
},
14+
"author": "Kyle Shevlin <kyle.a.shevlin@gmail.com> (http://kyleshevlin.com/)",
15+
"license": "MIT",
16+
"bugs": {
17+
"url": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms/issues"
18+
},
19+
"homepage": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms#readme",
20+
"devDependencies": {
21+
"jest": "^23.6.0"
22+
}
23+
}

quickSort/package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "intro-to-data-structures-and-algorithms",
3+
"version": "1.0.0",
4+
"description": "An egghead course to introduce data structures and algorithms in JavaScript",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "jest",
8+
"test:watch": "jest --watch"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms.git"
13+
},
14+
"author": "Kyle Shevlin <kyle.a.shevlin@gmail.com> (http://kyleshevlin.com/)",
15+
"license": "MIT",
16+
"bugs": {
17+
"url": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms/issues"
18+
},
19+
"homepage": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms#readme",
20+
"devDependencies": {
21+
"jest": "^23.6.0"
22+
}
23+
}

stacks/package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "intro-to-data-structures-and-algorithms",
3+
"version": "1.0.0",
4+
"description": "An egghead course to introduce data structures and algorithms in JavaScript",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "jest",
8+
"test:watch": "jest --watch"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms.git"
13+
},
14+
"author": "Kyle Shevlin <kyle.a.shevlin@gmail.com> (http://kyleshevlin.com/)",
15+
"license": "MIT",
16+
"bugs": {
17+
"url": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms/issues"
18+
},
19+
"homepage": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms#readme",
20+
"devDependencies": {
21+
"jest": "^23.6.0"
22+
}
23+
}

trees/package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "intro-to-data-structures-and-algorithms",
3+
"version": "1.0.0",
4+
"description": "An egghead course to introduce data structures and algorithms in JavaScript",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "jest",
8+
"test:watch": "jest --watch"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms.git"
13+
},
14+
"author": "Kyle Shevlin <kyle.a.shevlin@gmail.com> (http://kyleshevlin.com/)",
15+
"license": "MIT",
16+
"bugs": {
17+
"url": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms/issues"
18+
},
19+
"homepage": "https://github.com/kyleshevlin/intro-to-data-structures-and-algorithms#readme",
20+
"devDependencies": {
21+
"jest": "^23.6.0"
22+
}
23+
}

0 commit comments

Comments
 (0)