This repository has been archived by the owner on Jan 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.5 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
{
"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",
"bin": {
"cy": "./dist/run.js"
},
"scripts": {
"test": "echo ok",
"ztest": "./node_modules/.bin/ts-node ./node_modules/jasmine/bin/jasmine --config=./jasmine.json",
"tdd": "./node_modules/.bin/nodemon -w src -e ts -x ./node_modules/.bin/ts-node ./node_modules/jasmine/bin/jasmine --config=./jasmine.json",
"coverage": "./node_modules/.bin/nyc -r html -e .ts -x \"src/**/*.spec.ts\" npm run test",
"build": "rm -rf ./dist/* && npm run tsc && chmod +x dist/run.js",
"tsc": "tsc --project ./tsconfig.json",
"start": "node dist/run.js"
},
"keywords": [
"cloudy"
],
"repository": {
"type": "git",
"url": "https://github.com/cloud-cli/cli"
},
"publishConfig": {
"access": "public"
},
"author": "Darlan Alves <me@darlanalv.es>",
"license": "MIT",
"bugs": {
"url": "https://github.com/homebots/cloudy/issues"
},
"homepage": "https://github.com/homebots/cloudy#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^14.18.9",
"@types/yargs": "^16.0.0",
"jest": "^27.4.7",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-jest-resolver": "^1.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.5.5"
},
"dependencies": {
"@cloud-cli/gw": "^1.5.0",
"body-parser": "^1.20.1",
"yargs": "^15.4.1"
}
}