-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 KB
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
{
"name": "generator-pptb",
"version": "1.0.6",
"description": "Yeoman generator for Power Platform Tool Box to help you create tools",
"keywords": [
"yeoman-generator",
"power platform",
"power platform tool box",
"pptb",
"scaffolding"
],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/PowerPlatformToolBox/generator-pptb.git"
},
"bugs": {
"url": "https://github.com/PowerPlatformToolBox/generator-pptb/issues"
},
"main": "./generators/app/index.js",
"homepage": "https://github.com/PowerPlatformToolBox/generator-pptb",
"license": "MIT",
"author": {
"name": "Power Platform Tool Box",
"url": "https://PowerPlatformToolBox.com"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"version:stable": "pnpm version patch --no-git-tag-version",
"publish:stable": "pnpm run version:stable && pnpm publish --access public --tag latest --no-git-checks",
"test": "echo \"No tests yet\" && exit 0"
},
"dependencies": {
"chalk": "^5.3.0",
"yeoman-generator": "^7.3.2",
"yosay": "^3.0.0"
},
"devDependencies": {
"@types/node": "^20.x"
},
"files": [
"generators"
]
}