-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.16 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
{
"name": "@nimblehq/infra-template",
"version": "2.4.0",
"description": "Nimble Infrastructure Template generator",
"author": "Nimblehq",
"bin": {
"nimble-infra": "bin/run"
},
"homepage": "https://github.com/nimblehq/infrastructure-templates",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/nimblehq/infrastructure-templates.git"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json",
"/templates"
],
"dependencies": {
"@oclif/core": "^2",
"@oclif/plugin-help": "^6",
"@oclif/plugin-plugins": "^2",
"@types/dedent": "^0.7.0",
"inquirer": "^8.2.4",
"ts-dedent": "^2.2.0",
"tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@nimblehq/eslint-config-nimble-core": "^2.7.0",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.0.1",
"@types/inquirer": "^8.2.1",
"@types/jest": "^29.4.0",
"@types/node": "^20.11.24",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"fs-extra": "^11.1.0",
"glob": "^8.1.0",
"jest": "^29.4.3",
"oclif": "^3",
"shx": "^0.3.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslib": "^2.3.1",
"ttypescript": "^1.5.15",
"typescript": "^4.9.5",
"typescript-transform-paths": "^3.4.6"
},
"oclif": {
"bin": "nimble-infra",
"dirname": "nimble-infra",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " ",
"topics": {}
},
"scripts": {
"build": "shx rm -rf dist tsconfig.tsbuildinfo && ttsc -b",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "npm run build && oclif manifest && oclif readme",
"test": "jest",
"test:watch": "jest --watch",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=16.0.0"
},
"bugs": {
"url": "https://github.com/nimblehq/infrastructure-templates/issues"
},
"keywords": [
"oclif"
],
"directories": {
"test": "test"
}
}