-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.39 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
{
"name": "craftup",
"version": "1.5.5",
"description": "Easy Craft CMS development.",
"main": "index.js",
"scripts": {
"lint": "prettier --write src/**/*.js"
},
"bin": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/includable/craftup.git"
},
"keywords": [
"craft",
"cms",
"craftcms",
"cli",
"tool",
"development",
"local"
],
"author": "Thomas Schoffelen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/includable/craftup/issues"
},
"homepage": "https://github.com/includable/craftup#readme",
"dependencies": {
"@includable/open-browser": "^1.1.0",
"axios": "^0.28.0",
"chalk": "^3.0.0",
"commander": "^4.1.1",
"download-file": "^0.1.5",
"hasbin": "^1.2.3",
"log-update": "^3.4.0",
"mkdirp": "^1.0.4",
"mysql-import": "^1.0.13",
"mysqldump": "^2.3.0",
"open-editor": "^2.0.1",
"ora": "^4.1.1",
"prompt-confirm": "^2.0.4",
"shelljs": "^0.8.4",
"tcp-port-used": "^1.0.1",
"unzipper": "^0.10.11",
"update-notifier": "^4.1.1",
"uuid": "^8.3.0",
"yaml": "^2.2.2"
},
"devDependencies": {
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "^2.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}