generated from oracle/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
112 lines (112 loc) · 2.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@oracle/create-database-app",
"version": "1.3.1",
"description": "Create an Oracle Database Application from a Template",
"author": "Oracle Corporation",
"keywords": [
"oracle",
"database",
"app"
],
"license": "UPL-1.0",
"type": "module",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/oracle/create-database-app.git"
},
"bugs": {
"url": "https://github.com/oracle/create-database-app/issues"
},
"bin": {
"create-database-app": "./bin/run.js"
},
"files": [
"/bin",
"/dist",
"/templates",
"/oclif.manifest.json"
],
"oclif": {
"bin": "create-database-app",
"dirname": "create-database-app",
"default": ".",
"commands": "./dist/src",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " ",
"topics": {
"hello": {
"description": "Say hello to the world and others"
}
}
},
"scripts": {
"start": "cd generated && ../bin/run.js",
"dev": "nodemon --config nodemon.json",
"_dev": "cd generated && ../bin/dev.js",
"debug": "cd generated && node --inspect-brk ../bin/dev.js",
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "npm run build && oclif manifest && oclif readme",
"pre_dev": "run-s -s build",
"predebug": "run-s -s build",
"prepare:build": "npm run build",
"prepare:husky": "husky install",
"prepare": "run-s -s prepare:*",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md && run-s build"
},
"dependencies": {
"@inquirer/prompts": "^3.3.2",
"@oclif/core": "^3.27.0",
"@oclif/plugin-help": "^5.2.20",
"@oclif/plugin-plugins": "^5.3.7",
"extract-zip": "^2.0.1",
"inquirer": "^9.3.6",
"untildify": "^5.0.0",
"yeoman-environment": "^3.19.3",
"yeoman-generator": "^5.10.0"
},
"bundledDependencies": [
"@inquirer/prompts",
"@oclif/core",
"@oclif/plugin-help",
"@oclif/plugin-plugins",
"extract-zip",
"inquirer",
"untildify",
"yeoman-environment",
"yeoman-generator"
],
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4.0.9",
"@types/chai": "^4",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10",
"@types/node": "^22",
"@types/yeoman-generator": "^5.2.14",
"chai": "^4",
"dotenv-cli": "^7.4.2",
"eslint": "^8",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"husky": "^8.0.3",
"mocha": "^10",
"nodemon": "^3.0.3",
"npm-run-all": "^4.1.5",
"oclif": "4.11.3",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^5"
}
}