-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 715 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 715 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
27
28
29
30
31
32
{
"name": "code-problems",
"version": null,
"private": true,
"description": "Repository full of code problems and common solutions.",
"main": null,
"dependencies": {},
"devDependencies": {
"mocha": "~1.16.2",
"jshint": "~2.4.0",
"chai": "~1.8.1"
},
"scripts": {
"test": "jshint solutions/javascript && mocha tests/javascript"
},
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/code-problems.git"
},
"keywords": [
"code",
"problems",
"interview",
"programming"
],
"author": "Blake Embrey",
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/blakeembrey/code-problems/issues"
}
}