-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
121 lines (121 loc) · 3.35 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "ten-lists",
"version": "1.0.1",
"description": "This project provides both a CLI and a webapp, which generate a playlist of 10 Bible Chapters (represented by 10 mp3 files) to be listened to on any given day, according to Professor Grant Horner's 10 lists Bible-Reading System.",
"scripts": {
"build": "grunt rm && grunt all",
"commit": "git-cz",
"release": "standard-version",
"start": "grunt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/engineervix/ten-lists.git"
},
"author": "Victor Miti",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/engineervix/ten-lists/issues"
},
"homepage": "https://github.com/engineervix/ten-lists#readme",
"private": false,
"dependencies": {
"balloon-css": "^1.2.0",
"bootstrap": "^4.6.0",
"bootswatch": "^4.3.1",
"font-awesome": "^4.7.0",
"holderjs": "^2.9.9",
"jquery": "^3.6.0",
"moment": "^2.29.1"
},
"devDependencies": {
"clean-css": "^5.1.5",
"commitizen": "^4.2.5",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"grunt": "^1.4.1",
"grunt-browser-sync": "^2.2.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-htmlmin": "^3.1.0",
"grunt-contrib-uglify-es": "git+https://github.com/gruntjs/grunt-contrib-uglify.git#harmony",
"grunt-contrib-watch": "^1.1.0",
"grunt-json-minification": "^0.2.1",
"grunt-newer": "^1.3.0",
"popper.js": "^1.16.1",
"standard-version": "^9.5.0",
"time-grunt": "^2.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard-version": {
"header": "# Changelog\n\nAll notable changes to this project will be documented here.\n\nThe format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project attempts to adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).\n",
"types": [
{
"type": "feat",
"section": "🚀 Features"
},
{
"type": "fix",
"section": "🐛 Bug Fixes"
},
{
"type": "docs",
"section": "📝 Docs",
"hidden": false
},
{
"type": "style",
"section": "💄 Styling",
"hidden": false
},
{
"type": "refactor",
"hidden": false,
"section": "♻️ Code Refactoring"
},
{
"type": "perf",
"section": "⚡️ Performance Improvements",
"hidden": false
},
{
"type": "test",
"section": "✅ Tests",
"hidden": false
},
{
"type": "build",
"section": "⚙️ Build System",
"hidden": false
},
{
"type": "ci",
"section": "👷 CI/CD",
"hidden": false
},
{
"type": "chore",
"section": "🚧 Others",
"hidden": true
},
{
"type": "revert",
"section": "⏪️ Reverts",
"hidden": true
}
],
"scripts": {
"prechangelog": "sed -e '1,6d' -i CHANGELOG.md",
"postchangelog": "sed -e 's/###\\ \\[/##\\ \\[v/g' -i CHANGELOG.md && sed -re 's/##\\ \\[([0-9])/##\\ \\[v\\1/g' -i CHANGELOG.md"
}
},
"engines": {
"node": ">= 16 <17",
"npm": ">= 6.13.4"
}
}