This repository has been archived by the owner on Jun 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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
{
"name": "parse-aws-firehose-logger-adapter",
"version": "1.3.0",
"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 -x \"**/spec/**\" 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-node6": "^11.0.0",
"codecov": "^3.0.0",
"config": "^1.24.0",
"eslint": "^4.7.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"istanbul": "^0.4.5",
"jasmine": "^2.5.3",
"kerberos": "0.0.24"
},
"dependencies": {
"aws-sdk": "^2.12.0",
"winston-firehose": "^1.0.8"
},
"peerDependencies": {
"parse-server": "2.x",
"parse": "1.x"
}
}