-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.08 KB
/
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
33
34
35
36
37
38
39
40
41
42
{
"name": "interview",
"version": "0.1.2",
"description": "A collection of command line tools for snarky answers to generic interview questions",
"main": "bin/fizzbuzz",
"bin": {
"itv-anagrams": "bin/anagrams",
"itv-fib": "bin/fib",
"itv-fizzbuzz": "bin/fizzbuzz",
"itv-prime": "bin/prime",
"itv-strrev": "bin/strrev"
},
"preferGlobal": true,
"scripts": {
"test": "mocha --harmony -R nyan",
"cover": "node --harmony node_modules/istanbul/lib/cli.js cover _mocha -- -R nyan"
},
"repository": {
"type": "git",
"url": "git://github.com/SomeKittens/Interview.git"
},
"keywords": [
"fizzbuzz",
"snark",
"interview",
"Fibonacci"
],
"author": "Randall Koutnik <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SomeKittens/Interview/issues"
},
"homepage": "https://github.com/SomeKittens/Interview",
"dependencies": {
"commander": "2.2.0",
"semver": "~2.2.1"
},
"devDependencies": {
"should": "4.0.x",
"istanbul": "git://github.com/gotwarlost/istanbul.git#harmony"
}
}