-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
76 lines (76 loc) · 1.97 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "elb-log-analyzer",
"version": "0.0.0",
"description": "Log Analyzer for AWS Elastic Load Balancer",
"main": "./dist/lib.js",
"bin": {
"elb-log-analyzer": "./dist/cli.js"
},
"author": "Ozan Tunca <[email protected]> (http://www.ozantunca.org/)",
"repository": {
"type": "git",
"url": "https://github.com/ozantunca/elb-log-analyzer.git"
},
"bugs": {
"url": "https://github.com/ozantunca/elb-log-analyzer/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ozantunca/elb-log-analyzer/raw/master/LICENSE"
}
],
"license": "MIT",
"preferGlobal": true,
"dependencies": {
"colors": "^1.4.0",
"glob": "^8.0.3",
"lodash": "^4.17.21",
"optimist": "^0.6.1",
"progress": "^2.0.3"
},
"scripts": {
"test": "npm run lint && npm run build && jest",
"build": "tsc -p tsconfig.json",
"lint": "eslint ./src/**/*",
"lint:fix": "eslint ./src/**/* --fix",
"publish": "semantic-release"
},
"readmeFilename": "README.md",
"homepage": "https://github.com/ozantunca/elb-log-analyzer",
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.1.1",
"@semantic-release/npm": "^7.0.6",
"@types/glob": "^7.2.0",
"@types/jest": "^28.1.7",
"@types/lodash": "^4.14.184",
"@types/progress": "^2.0.5",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^28.1.3",
"semantic-release": "^17.1.2",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"files": [
"package.json",
"package-lock.json",
"README.md",
"LICENSE",
"dist"
],
"jest": {
"preset": "ts-jest",
"rootDir": "test"
},
"engines": {
"node": ">=14.0.0"
}
}