-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1021 Bytes
/
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
{
"name": "splunk-spl-to-elasticsearch-dsl",
"description": "Convert Splunk SPL to Elasticsearch DSL with pegjs",
"version": "2.3.1",
"main": "index.js",
"scripts": {
"build": "node_modules/pegjs/bin/pegjs --format umd --export-var splToDslConverter -o lib/converter.js lib/splunk.pegjs && gulp && npm run test",
"test": "jest",
"prepublish": "npm run-script build && npm run test"
},
"repository": "git@github.com:Anonymity94/spl2dsl.git",
"author": "Anonymity94 <1176989591@qq.com>",
"keywords": [
"pegjs",
"splunk",
"parser",
"elasticsearch"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@types/jest": "^26.0.4",
"chalk": "^4.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-header": "^2.0.9",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"jest": "^26.1.0",
"pegjs": "^0.10.0"
},
"dependencies": {
"gulp-cli": "^2.3.0",
"serve": "^12.0.0"
}
}