Skip to content

Commit 47a8aa6

Browse files
committed
Creating initial repository for coding challenges.
0 parents  commit 47a8aa6

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
.idea/
3+

package.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "CodePrep.io_coding_challenges",
3+
"author": "Jennifer Bland",
4+
"url": "http://www.codeprep.io",
5+
"version": "1.0.0",
6+
"description": "CodePrep.io presents coding challenges you might face when interviewing for a Full-Stack Developer position",
7+
"scripts": {
8+
"test": "echo \"Error: run npm test from inside the challange directories or do 'npm run test-all'\" && exit 1",
9+
"test-all": "mocha '**/test.js'"
10+
},
11+
"keywords": [
12+
"CodeProp".
13+
"full stack",
14+
"coding challenge",
15+
"whiteboard exercise",
16+
"interview program challenge"
17+
],
18+
"repository": {
19+
"type": "git",
20+
"url": "https://github.com/codeprep/coding_challenges"
21+
},
22+
"bugs": {
23+
"url": "https://github.com/codeprep/coding_challenges/issues"
24+
},
25+
"license": "MIT",
26+
"devDependencies": {
27+
"mocha": "^2.2.4",
28+
"should": "^7.1.1",
29+
"sinon": "^1.15.3"
30+
}
31+
}

0 commit comments

Comments
 (0)