-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
93 lines (93 loc) · 2.31 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "nr-funbucks",
"version": "1.0.0",
"description": "Funbucks - A fluentbit configuration generator",
"author": "Matthew Bystedt",
"bin": {
"funbucks": "./bin/run"
},
"bundledDependencies": true,
"homepage": "https://github.com/mbystedt/hello-world",
"license": "Apache-2.0",
"main": "dist/index.js",
"repository": "mbystedt/hello-world",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^4.2.3",
"@oclif/plugin-help": "^6.2.21",
"@oclif/plugin-plugins": "^5.4.25",
"nunjucks": "^3.2.4",
"semver": "^7.6.3",
"yaml": "^2.7.0"
},
"devDependencies": {
"@oclif/test": "^4.1.7",
"@types/chai": "^5.0.1",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.7",
"@types/nunjucks": "^3.2.6",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"chai": "^5.1.2",
"eslint": "^9.18.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.2",
"jest": "^29.7.0",
"mocha": "^11.0.1",
"oclif": "^4.17.13",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"oclif": {
"bin": "nr-funbucks",
"dirname": "oex",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " ",
"topics": {
"hello": {
"description": "Say hello to the world and others"
}
}
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint \"src/**/*.ts\"",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm lint",
"pack": "",
"prepack": "npm run build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"oclif"
],
"types": "dist/index.d.ts",
"bundleDependencies": [
"@oclif/core",
"@oclif/plugin-help",
"@oclif/plugin-plugins",
"nunjucks",
"semver",
"yaml"
]
}