forked from TIY-Durham/javascript-koans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 843 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
{
"name": "javascript-koans",
"version": "1.0.0",
"description": "Based on Edgecase's fantastic [Ruby koans](http://github.com/edgecase/ruby_koans), the goal of the Javascript koans is to teach you Javascript programming through testing.",
"main": "index.js",
"scripts": {
"test": "mocha koans/",
"start": "npm test -- --bail --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TIY-Durham/javascript-koans.git"
},
"author": [
"David Laing <david@davidlaing.com>",
"David Rogers <david@theironyard.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TIY-Durham/javascript-koans/issues"
},
"homepage": "https://github.com/TIY-Durham/javascript-koans#readme",
"dependencies": {
"chai": "^3.2.0",
"lodash": "^3.10.1",
"mocha": "^2.2.5"
}
}