-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·40 lines (40 loc) · 958 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
33
34
35
36
37
38
39
40
{
"name": "hubot-daily-comic",
"version": "0.0.4",
"description": "A hubot script that will automatically fetch the daily Dilbert and xkcd",
"main": "index",
"author": {
"name": "Remko Plantenga"
},
"repository": "sonata82/hubot-daily-comic",
"license": "GPL-3.0",
"keywords": [
"hubot-scripts",
"comic",
"dilbert",
"xkcd"
],
"dependencies": {
"coffee-script": "^1.7.1",
"daily-comic.js": "git+https://[email protected]/sonata82/daily-comic.js.git#urls-without-scheme"
},
"devDependencies": {
"chai": "^1.9.1",
"grunt": "^0.4.5",
"grunt-mocha-cov": "0.3.0",
"mocha-term-cov-reporter": "0.2.0",
"require-subvert": "^0.0.3",
"sinon": "^1.10.0",
"sinon-chai": "^2.5.0"
},
"config": {
"blanket": {
"loader": "./node-loaders/coffee-script",
"pattern": "src",
"data-cover-never": "node_modules"
}
},
"scripts": {
"test": "grunt travis"
}
}