forked from hisabimbola/slack-history-export
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.26 KB
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
44
45
46
47
48
{
"name": "slack-history-export",
"version": "0.3.0",
"description": "Command line module to export slack history",
"scripts": {
"clean": "rm -rf lib",
"build": "babel --optional runtime src --out-dir lib",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hisabimbola/slack-history-export.git"
},
"keywords": [
"slack",
"export",
"es6"
],
"bin": {
"slack-history-export": "bin/cli.js"
},
"author": "Abimbola Idowu <abimbola2010@gmail.com> (http://hisabimbola.com)",
"preferGlobal": true,
"license": [
{
"type": "MIT",
"url": "https://github.com/hisabimbola/winston-firebase/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/hisabimbola/slack-history-export/issues"
},
"homepage": "https://github.com/hisabimbola/slack-history-export#readme",
"dependencies": {
"babel": "^5.8.23",
"babel-runtime": "^5.8.25",
"chalk": "^1.1.3",
"commander": "^2.8.1",
"csv": "^0.4.6",
"fast-csv": "^2.0.0",
"jsonfile": "^2.2.2",
"lodash": "^3.10.1",
"pleasant-progress": "^1.1.0",
"slack-api-client": "0.0.2",
"update-notifier": "^0.5.0"
}
}