forked from acinader/parse-aws-firehose-logger-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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
{
"name": "parse-aws-firehose-logger-adapter",
"version": "1.1.4",
"description": "Send logs from parse-server to AWS Firehose",
"main": "lib/index.js",
"keywords": [
"parse-server",
"winston",
"AWS Firehose",
"Kibana",
"Elastic Search"
],
"scripts": {
"build": "babel src -d lib --source-maps",
"test": "npm run build && NODE_CONFIG_DIR=./spec/config istanbul cover jasmine",
"lint": "eslint src/** spec/**",
"prepublish": "npm run build",
"pretest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acinader/parse-aws-firehose-logger-adapter.git"
},
"author": "Arthur Cinader",
"license": "MIT",
"bugs": {
"url": "https://github.com/acinader/parse-aws-firehose-logger-adapter/issues"
},
"homepage": "https://github.com/acinader/parse-aws-firehose-logger-adapter#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"codecov": "^1.0.1",
"config": "^1.24.0",
"eslint": "^3.13.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"istanbul": "^0.4.5",
"jasmine": "^2.5.2",
"kerberos": "0.0.22"
},
"dependencies": {
"aws-sdk": "^2.7.1",
"winston-firehose": "^1.0.8"
},
"peerDependencies": {
"parse-server": "^2.2.22 || ^2.2.25-beta.1",
"parse": "^1.9.2"
}
}