-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "js-graylog-query-builder",
"version": "1.1.1",
"description": "Graylog Search Query Builder for Graylog REST API",
"author": {
"name": "Joonsang Park",
"email": "debugrammer@gmail.com",
"url": "http://joonsang.com"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/debugrammer/js-graylog-query-builder.git"
},
"scripts": {
"prettier": "prettier --write \"**/*.{js,md,json,*rc}\"",
"lint": "eslint index.js test lib",
"test": "ava --timeout 30000"
},
"keywords": [
"graylog",
"search query",
"query builder"
],
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"bugs": {
"url": "https://github.com/debugrammer/js-graylog-query-builder/issues"
},
"homepage": "https://github.com/debugrammer/js-graylog-query-builder",
"dependencies": {
"lodash": "^4.17.20"
},
"devDependencies": {
"ava": "^4.3.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.1.1"
},
"ava": {
"files": ["test/**/*"],
"tap": true,
"verbose": true
}
}