-
Notifications
You must be signed in to change notification settings - Fork 158
/
package.json
32 lines (32 loc) · 926 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
29
30
31
32
{
"name": "coffeescript-koans",
"version": "1.2.0",
"description": "Koans for learning CoffeeScript",
"main": "index.js",
"scripts": {
"test": "mocha --compilers coffee:coffee-script/register -R spec completed-koans/*.coffee",
"watch": "mocha -w --compilers coffee:coffee-script/register -R nyan completed-koans/*.coffee"
},
"repository": {
"type": "git",
"url": "git://github.com/sleepyfox/coffeescript-koans.git"
},
"keywords": [
"JavaScript",
"Koans",
"Tests",
"TDD",
"CoffeeScript"
],
"author": "@sleepyfox",
"license": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)",
"bugs": {
"url": "https://github.com/sleepyfox/coffeescript-koans/issues"
},
"homepage": "https://github.com/sleepyfox/coffeescript-koans",
"devDependencies": {
"chai": "^3.5",
"coffee-script": "^1.10",
"mocha": "^2.5"
}
}