-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 1.89 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
{
"name": "timeular-cli",
"version": "1.1.10",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"release": "npx semantic-release",
"semantic-release": "semantic-release",
"commit": "npx git-cz"
},
"bin": {
"timeular": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/khaledosman/timeular-cli.git"
},
"keywords": [
"timeular",
"cli",
"nodejs",
"timeularjs"
],
"author": "Khaled Osman",
"license": "ISC",
"bugs": {
"url": "https://github.com/khaledosman/timeular-cli/issues"
},
"homepage": "https://github.com/khaledosman/timeular-cli#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.6",
"@semantic-release/release-notes-generator": "^9.0.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.0",
"semantic-release": "^19.0.3",
"standard": "^14.3.4"
},
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.0",
"clui": "^0.3.6",
"commander": "^6.1.0",
"dotenv": "^8.2.0",
"figlet": "^1.5.0",
"fuzzy": "^0.1.3",
"inquirer": "^7.3.3",
"inquirer-autocomplete-prompt": "^1.2.0",
"inquirer-datepicker": "^2.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/changelog",
"@semantic-release/git"
]
},
"husky": {
"hooks": {
"pre-commit": "npx standard --fix",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}