-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.59 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "gitter-archive-cli",
"version": "1.0.5-1",
"description": "Gitter Chat room message downloader",
"main": "lib/index.js",
"preferGlobal": true,
"private": false,
"engines": {
"node": ">=0.12"
},
"scripts": {
"start": "cross-env NODE_ENV=production node ./bin/index.js",
"start:dev": "cross-env NODE_ENV=development babel-node ./src/bin/index.js",
"prepublish": "run-s build",
"prebuild": "rimraf bin/ lib/",
"build": "cross-env NODE_ENV=production babel -D -d . src",
"prebuild:watch": "rimraf bin/ lib/",
"build:watch": "cross-env NODE_ENV=production nodemon -q -w src -e js -x babel -D -d . src",
"test": "xo"
},
"bin": {
"gitter-archive": "bin/index.js"
},
"files": [
"lib",
"bin",
"index.js"
],
"author": "Abhisek Pattnaik <[email protected]> (https://about.me/abhisekp)",
"license": "MIT",
"homepage": "https://github.com/abhisekp/gitter-archive-cli",
"repository": {
"type": "git",
"url": "https://github.com/abhisekp/gitter-archive-cli.git"
},
"bugs": {
"url": "https://github.com/abhisekp/gitter-archive-cli/issues"
},
"keywords": [
"gitter",
"archive"
],
"dependencies": {
"app-root-path": "^2.0.1",
"axios": "^0.15.3",
"babel-polyfill": "^6.20.0",
"cosmiconfig": "^5.2.1",
"cross-env": "^3.1.3",
"csv-write-stream": "^2.0.0",
"cyclic-next": "^1.0.1",
"data-store": "^2.0.0",
"debug": "^2.3.3",
"dotenv": "^2.0.0",
"extglob": "^3.0.0",
"hjson": "^2.3.1",
"lodash": "^4.17.2",
"mkpath": "^1.0.0",
"npm-run-all": "^4.1.0",
"promise-retry": "^1.1.1",
"rate-limiter-api": "^1.0.11",
"rimraf": "^4.3.1",
"source-map-support": "^0.4.7",
"stampit": "^3.0.6",
"vorpal": "^1.11.4",
"winston": "^2.3.0",
"winston-papertrail": "^1.0.4"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-babili": "^0.0.9",
"babel-preset-env": "^1.0.2",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.9.1",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.1.0",
"xo": "^0.17.1"
},
"babel": {
"sourceMap": "inline",
"plugins": [
"lodash"
],
"presets": [
"latest",
"stage-0"
],
"env": {
"production": {
"presets": [
"babili"
]
}
}
},
"xo": {
"esnext": true,
"envs": [
"node"
],
"ignores": [
"lib",
"bin"
],
"parser": "babel-eslint"
}
}