-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
43 lines (43 loc) · 992 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
41
42
43
{
"name": "hubot-seen",
"description": "A hubot script that tracks when/where users were last seen",
"version": "2.0.0",
"author": "Patrick Connolly <[email protected]>",
"license": "MIT",
"keywords": [
"hubot",
"hubot-scripts",
"seen"
],
"repository": {
"type": "git",
"url": "git://github.com/hubot-scripts/hubot-seen.git"
},
"bugs": {
"url": "https://github.com/hubot-scripts/hubot-seen/issues"
},
"dependencies": {
"coffee-script": "^1.12.4",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"chai": "^4.2.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-mocha-test": "^0.13.3",
"grunt-release": "^0.14.0",
"hubot-test-helper": "^1.9.0",
"matchdep": "^2.0.0",
"mocha": "^8.1.3",
"sinon": "^9.1.0",
"sinon-chai": "^3.3.0"
},
"main": "index.coffee",
"engine": {
"node": ">=10.0"
},
"scripts": {
"test": "grunt test"
}
}