|
1 | 1 | { |
2 | | - "name": "@dico/cli", |
3 | | - "version": "0.0.6", |
4 | | - "description": "Dico.app Command Line Interface", |
5 | | - "keywords": [ |
6 | | - "dico", |
7 | | - "cli", |
8 | | - "management" |
9 | | - ], |
10 | | - "repository": { |
11 | | - "type": "git", |
12 | | - "url": "ssh://git@github.com/dico-app/dico-cli.git" |
13 | | - }, |
14 | | - "license": "MIT", |
15 | | - "author": "Lucie Haberer <hello@lihbr.com> (https://lihbr.com)", |
16 | | - "bin": { |
17 | | - "dico": "bin/cli.js" |
18 | | - }, |
19 | | - "files": [ |
20 | | - "bin", |
21 | | - "postinstall.js" |
22 | | - ], |
23 | | - "scripts": { |
24 | | - "build": "siroc build", |
25 | | - "dev": "siroc build --watch", |
26 | | - "release": "yarn build && yarn test && standard-version && git push --follow-tags && yarn build && npm publish", |
27 | | - "release:dry": "yarn build && yarn test && standard-version --dry-run", |
28 | | - "lint": "eslint --ext .js,.ts .", |
29 | | - "unit": "nyc --reporter=lcovonly --reporter=text --exclude-after-remap=false ava", |
30 | | - "test": "yarn lint && yarn unit", |
31 | | - "postinstall": "node postinstall.js" |
32 | | - }, |
33 | | - "husky": { |
34 | | - "hooks": { |
35 | | - "pre-commit": "yarn lint", |
36 | | - "commit-msg": "commitlint --env HUSKY_GIT_PARAMS" |
37 | | - } |
38 | | - }, |
39 | | - "dependencies": { |
40 | | - "@lihbr/listr-update-renderer": "^0.5.1", |
41 | | - "cac": "^6.7.3", |
42 | | - "chalk": "^4.1.1", |
43 | | - "consola": "^2.15.3", |
44 | | - "detect-indent": "^6.1.0", |
45 | | - "execa": "^5.1.1", |
46 | | - "exit": "^0.1.2", |
47 | | - "globby": "^11.0.3", |
48 | | - "inquirer": "^8.1.0", |
49 | | - "latest-version": "^5.1.0", |
50 | | - "listr": "^0.14.3", |
51 | | - "node-fetch": "^2.6.1", |
52 | | - "rc9": "^1.2.0", |
53 | | - "rxjs": "^7.1.0", |
54 | | - "semver": "^7.3.5" |
55 | | - }, |
56 | | - "devDependencies": { |
57 | | - "@commitlint/cli": "12.1.4", |
58 | | - "@commitlint/config-conventional": "12.1.4", |
59 | | - "@types/exit": "0.1.31", |
60 | | - "@types/inquirer": "7.3.1", |
61 | | - "@types/listr": "0.14.3", |
62 | | - "@types/node-fetch": "2.5.10", |
63 | | - "@types/semver": "7.3.6", |
64 | | - "@typescript-eslint/eslint-plugin": "4.26.0", |
65 | | - "@typescript-eslint/parser": "4.26.0", |
66 | | - "ava": "3.15.0", |
67 | | - "eslint": "7.27.0", |
68 | | - "eslint-config-prettier": "8.3.0", |
69 | | - "eslint-plugin-prettier": "3.4.0", |
70 | | - "husky": "4.3.8", |
71 | | - "nyc": "15.1.0", |
72 | | - "prettier": "2.3.0", |
73 | | - "siroc": "0.11.0", |
74 | | - "standard-version": "9.3.0", |
75 | | - "ts-eager": "2.0.2", |
76 | | - "ts-essentials": "7.0.1", |
77 | | - "typescript": "4.3.2" |
78 | | - }, |
79 | | - "engines": { |
80 | | - "node": ">=12.0.0" |
81 | | - }, |
82 | | - "publishConfig": { |
83 | | - "access": "public" |
84 | | - } |
| 2 | + "name": "@dico/cli", |
| 3 | + "version": "0.0.7", |
| 4 | + "description": "Dico.app Command Line Interface", |
| 5 | + "keywords": [ |
| 6 | + "dico", |
| 7 | + "cli", |
| 8 | + "management" |
| 9 | + ], |
| 10 | + "repository": { |
| 11 | + "type": "git", |
| 12 | + "url": "ssh://git@github.com/dico-app/dico-cli.git" |
| 13 | + }, |
| 14 | + "license": "MIT", |
| 15 | + "author": "Lucie Haberer <hello@lihbr.com> (https://lihbr.com)", |
| 16 | + "bin": { |
| 17 | + "dico": "bin/cli.js" |
| 18 | + }, |
| 19 | + "files": [ |
| 20 | + "bin", |
| 21 | + "postinstall.js" |
| 22 | + ], |
| 23 | + "scripts": { |
| 24 | + "build": "siroc build", |
| 25 | + "dev": "siroc build --watch", |
| 26 | + "release": "yarn build && yarn test && standard-version && git push --follow-tags && yarn build && npm publish", |
| 27 | + "release:dry": "yarn build && yarn test && standard-version --dry-run", |
| 28 | + "lint": "eslint --ext .js,.ts .", |
| 29 | + "unit": "nyc --reporter=lcovonly --reporter=text --exclude-after-remap=false ava", |
| 30 | + "test": "yarn lint && yarn unit", |
| 31 | + "postinstall": "node postinstall.js" |
| 32 | + }, |
| 33 | + "husky": { |
| 34 | + "hooks": { |
| 35 | + "pre-commit": "yarn lint", |
| 36 | + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS" |
| 37 | + } |
| 38 | + }, |
| 39 | + "dependencies": { |
| 40 | + "@lihbr/listr-update-renderer": "^0.5.1", |
| 41 | + "cac": "^6.7.3", |
| 42 | + "chalk": "^4.1.1", |
| 43 | + "consola": "^2.15.3", |
| 44 | + "detect-indent": "^6.1.0", |
| 45 | + "execa": "^5.1.1", |
| 46 | + "exit": "^0.1.2", |
| 47 | + "globby": "^11.0.3", |
| 48 | + "inquirer": "^8.1.0", |
| 49 | + "latest-version": "^5.1.0", |
| 50 | + "listr": "^0.14.3", |
| 51 | + "node-fetch": "^2.6.1", |
| 52 | + "rc9": "^1.2.0", |
| 53 | + "rxjs": "^7.1.0", |
| 54 | + "semver": "^7.3.5" |
| 55 | + }, |
| 56 | + "devDependencies": { |
| 57 | + "@commitlint/cli": "12.1.4", |
| 58 | + "@commitlint/config-conventional": "12.1.4", |
| 59 | + "@types/exit": "0.1.31", |
| 60 | + "@types/inquirer": "7.3.1", |
| 61 | + "@types/listr": "0.14.3", |
| 62 | + "@types/node-fetch": "2.5.10", |
| 63 | + "@types/semver": "7.3.6", |
| 64 | + "@typescript-eslint/eslint-plugin": "4.26.0", |
| 65 | + "@typescript-eslint/parser": "4.26.0", |
| 66 | + "ava": "3.15.0", |
| 67 | + "eslint": "7.27.0", |
| 68 | + "eslint-config-prettier": "8.3.0", |
| 69 | + "eslint-plugin-prettier": "3.4.0", |
| 70 | + "husky": "4.3.8", |
| 71 | + "nyc": "15.1.0", |
| 72 | + "prettier": "2.3.0", |
| 73 | + "siroc": "0.11.0", |
| 74 | + "standard-version": "9.3.0", |
| 75 | + "ts-eager": "2.0.2", |
| 76 | + "ts-essentials": "7.0.1", |
| 77 | + "typescript": "4.3.2" |
| 78 | + }, |
| 79 | + "engines": { |
| 80 | + "node": ">=12.0.0" |
| 81 | + }, |
| 82 | + "publishConfig": { |
| 83 | + "access": "public" |
| 84 | + } |
85 | 85 | } |
0 commit comments