-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.45 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
{
"name": "demasy-cli",
"version": "1.0.0",
"description": "The demasy Command Line Interface (Demasy CLI) is a deployment and DevOps tool to manage your Oracle E-Business Suite Applications components and database objects for Oracle EBS developers.",
"main": "/src/bin/cli/cli.js",
"scripts": {
"start": "npm run deploy",
"deploy": "sudo npm install -g . --force",
"debug": "DEMASY_LOGGER_LEVEL='debug'",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|json)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-differnet",
"lint": "npx eslint --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/demasy/demasy-cli.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"bin": {
"demasy": "./src/bin/cli/cli.js"
},
"keywords": [
"demasy",
"demasy-cli",
"oracle"
],
"author": "Ahmed El-Demasy <founder@demasy.io> (https://github.com/demasy)",
"license": "ISC",
"bugs": {
"url": "https://github.com/demasy/demasy-cli/issues"
},
"homepage": "https://github.com/demasy/demasy-cli#readme",
"dependencies": {
"@demasy/demasy-core": "^1.0.2",
"config": "^3.3.7",
"winston": "^3.8.0",
"yargs": "^17.1.1-candidate.0"
},
"devDependencies": {
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
}
}