forked from rapid7/le_node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.07 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.07 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
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
{
"name": "le_node",
"version": "1.3.2",
"description": "Logentries client for node; use with or without Winston or Bunyan.",
"keywords": [
"logentries",
"logentries.com",
"logs",
"logging",
"winston",
"bunyan"
],
"homepage": "https://github.com/logentries/le_node",
"author": {
"name": "Darien Maillet Valentine",
"email": "darien.valentine@logentries.com"
},
"contributors": [
{
"name": "Darien Maillet Valentine",
"email": "darien.valentine@logentries.com"
},
{
"name": "Paul Dixon",
"email": "paul.dixon@logentries.com"
}
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/logentries/le_node.git"
},
"main": "lib/node_modules/logger.js",
"scripts": {
"build": "gobble build lib --force",
"lint": "eslint src",
"prepublish": "npm run build",
"test": "npm run build && npm run lint && node test/test.js | tap-spec"
},
"engines": {
"iojs": ">=0.10",
"node": ">=0.8.0",
"npm": ">=1.4.6"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"codependency": "0.1.4",
"json-stringify-safe": "5.0.1",
"lodash": "3.9.3",
"semver": "^5.1.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-eslint": "^6.0.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-syntax-decorators": "^6.5.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-3": "^6.5.0",
"bunyan": "^1.3.4",
"eslint": "^2.4.0",
"eslint-plugin-babel": "^3.1.0",
"estraverse": "^4.2.0",
"estraverse-fb": "^1.3.1",
"gobble": "^0.10.2",
"gobble-babel": "^6.0.0",
"gobble-cli": "^0.6.0",
"install": "^0.6.1",
"mitm": "^1.1.0",
"npm": "^3.8.2",
"tap-spec": "^3.0.0",
"tape": "^4.0.0",
"winston": "^1.0.0",
"winston1": "^1.1.2",
"winston2x": "^2.1.1"
},
"optionalPeerDependencies": {
"winston": "*",
"winston1": "*",
"winston2x": "*"
}
}