-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "splunk-sdk",
"version": "2.0.0",
"description": "SDK for usage with the Splunk REST API",
"homepage": "http://dev.splunk.com",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"repository": {
"type": "git",
"url": "http://github.com/splunk/splunk-sdk-javascript.git"
},
"keywords": [
"splunk",
"data",
"search",
"logs",
"javascript"
],
"scripts": {
"test": "nyc mocha tests/tests.js -t 50000 --allow-uncaught --exit --reporter mochawesome"
},
"dependencies": {
"cookie": "0.4.2",
"dotenv": "16.0.0",
"elementtree": "0.1.7",
"needle": "3.0.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"chai": "^4.3.6",
"jshint": "2.13.4",
"mocha": "7.2.0",
"mochawesome": "7.1.0",
"mustache": "4.2.0",
"nyc": "^15.1.0",
"readable-stream": "3.6.0",
"uglify-js": "3.15.2"
},
"author": {
"name": "Splunk",
"email": "devinfo@splunk.com",
"url": "http://dev.splunk.com"
},
"license": "Apache-2.0",
"engine": {
"node": ">=0.8.0"
}
}