-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "spl2sql",
"description": "Convert Splunk SPL to ClickHouse SQL with pegjs",
"version": "0.0.5",
"main": "dist/spl2sql.js",
"types": "index.d.ts",
"scripts": {
"build": "node_modules/pegjs/bin/pegjs --format umd --export-var splToSqlConverter -o lib/compiler.js lib/compiler.pegjs && gulp && npm run test",
"test": "jest",
"prepublish": "npm run-script build && npm run test"
},
"repository": "git@github.com:Anonymity94/spl2sql.git",
"homepage": "https://anonymity94.github.io/spl2sql/examples/",
"author": "wangfucheng <wangfucheng@machloop.com>",
"keywords": [
"pegjs",
"splunk",
"parser",
"sql"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@types/jest": "^26.0.4",
"del": "^6.0.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"
},
"files": [
"dist",
"index.d.ts"
]
}