-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "@cloud-cli/cli",
"version": "0.0.0",
"description": "CLI for the Cloud CLI project",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"prettier": "@cloud-cli/prettier-config",
"bin": {
"cy": "./dist/run.js"
},
"scripts": {
"test": "npm run tdd -- --watch=false",
"tdd": "vitest --coverage.enabled --coverage.skipFull",
"build": "rm -rf ./dist/* && npm run tsc && chmod +x dist/run.js",
"tsc": "tsc"
},
"keywords": [
"cloudy"
],
"repository": {
"type": "git",
"url": "https://github.com/cloud-cli/cli"
},
"publishConfig": {
"access": "public"
},
"author": "Darlan Alves <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloud-cli/cli/issues"
},
"homepage": "https://github.com/cloud-cli/cli#readme",
"devDependencies": {
"@cloud-cli/prettier-config": "^1.0.0",
"@cloud-cli/typescript-config": "^1.0.0",
"@types/node": "^20.11.25",
"@types/yargs": "^17.0.32",
"@vitest/coverage-v8": "^1.3.1",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"dependencies": {
"yargs": "^17.6.2"
}
}