forked from Beh01der/node-grok
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.5 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
52
53
54
55
56
57
58
59
{
"name": "grok-js",
"version": "3.3.1",
"description": "Regular expression template library inspired by logstash grok filter module",
"repository": "https://github.com/honzahommer/grok-js.git",
"bugs": {
"url": "https://github.com/honzahommer/grok-js/issues"
},
"main": "lib/",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"release:patch": "npm version patch && npm run push",
"release:minor": "npm version minor && npm run push",
"release:major": "npm version major && npm run push",
"push": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard \"lib/**/*.js\" --fix",
"mocha": "mocha ./test/*.test.js",
"test": "npm run lint && nyc npm run mocha"
},
"keywords": [
"regex",
"grok",
"logstash"
],
"author": "Andrey Chausenko",
"contributors": [
"Honza Hommer <[email protected]>"
],
"license": "ISC",
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"semistandard": {
"env": [
"mocha"
]
},
"dependencies": {
"async": "^3.0.1",
"collections": "github:honzahommer/collections",
"debug": "^4.1.1",
"oniguruma": "^7.2.0",
"universalify": "^0.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"husky": "^4.2.3",
"mocha": "^10.6.0",
"nyc": "^15.0.0",
"semistandard": "^14.0.0"
}
}