-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "splunk-logging",
"version": "0.11.1",
"description": "Splunk HTTP Event Collector logging interface",
"homepage": "http://dev.splunk.com",
"main": "index.js",
"scripts": {
"docs": "jsdoc -d docs .",
"jshint": "jshint *.js test examples",
"pretest": "npm run jshint && npm run docs",
"test": "nyc --reporter=lcov --reporter=text-summary _mocha -- -R spec --exit",
"test-specific-file": "_mocha -- -R spec --exit ",
"test-specific": "_mocha -- -R spec --exit -g "
},
"repository": {
"type": "git",
"url": "https://github.com/splunk/splunk-javascript-logging.git"
},
"keywords": [
"splunk",
"HTTP",
"event",
"collector",
"logging",
"stream"
],
"author": {
"name": "Splunk",
"email": "devinfo@splunk.com",
"url": "http://dev.splunk.com"
},
"license": "Apache-2.0",
"engine": {
"node": ">=4.0.0"
},
"dependencies": {
"needle": "^2.6.0"
},
"devDependencies": {
"nyc": "^15.1.0",
"jsdoc": "^3.6.7",
"jshint": "^2.12.0",
"mocha": "^8.4.0"
}
}