forked from coliff/bootstrap-5-migrate-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "bootstrap-5-migrate-tool",
"version": "1.0.0",
"description": "A command-line tool designed to help you upgrade your Bootstrap 4 projects to Bootstrap 5",
"homepage": "https://github.com/coliff/bootstrap-5-migrate-tool",
"bugs": {
"url": "https://github.com/coliff/bootstrap-5-migrate-tool/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coliff/bootstrap-5-migrate-tool.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/coliff"
},
"license": "MIT",
"author": "Christian Oliff (https://christianoliff.com)",
"engines": {
"node": ">=16"
},
"main": "gulpfile.js",
"scripts": {
"start": "gulp migrate",
"htmlhint": "npx htmlhint **/*.html",
"lint": "eslint gulpfile.js",
"prettier": "prettier --write \"**/*.{html,js,json,md,yml}\"",
"test": "npm run lint && npm run prettier && gulp migrate"
},
"dependencies": {
"gulp": "^4.0.2",
"gulp-replace": "^1.1.4"
},
"devDependencies": {
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
"prettier": "3.1.0"
},
"files": [
"gulpfile.js"
]
}