-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathpackage.json
60 lines (60 loc) · 1.34 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
{
"name": "@patternfly/create-element",
"version": "1.0.4",
"description": "Scaffold web components monorepos based on PatternFly Elements",
"author": "Benny Powers <bennyp@redhat.com>",
"license": "MIT",
"main": "main.js",
"module": "main.js",
"type": "module",
"typings": "./main.d.ts",
"bin": {
"create-app": "bin/main.js"
},
"contributors": [
"Martin Pitt <mpitt@redhat.com>"
],
"keywords": [
"custom elements",
"custom-elements",
"generator",
"patternfly-elements",
"patternfly",
"web components",
"web-components"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"bin/**/*",
"**/*.js",
"**/*.d.ts",
"templates/**/*"
],
"scripts": {
"test": "echo 'unit tests for PFE generator not written yet'"
},
"bugs": {
"url": "git+ssh://git@github.com/patternfly/pfe-tools/issues"
},
"homepage": "https://patternflyelements.org/",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/patternfly/pfe-tools.git",
"directory": "packages/create-element"
},
"dependencies": {
"case": "^1.6.3",
"chalk": "^5.3.0",
"execa": "^9.3.1",
"ncp": "^2.0.0",
"prompts": "^2.4.2",
"tslib": "^2.6.3",
"yargs": "^17.7.2"
},
"directories": {
"test": "test"
}
}