-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 1.76 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
{
"name": "alacritty-theme-switch",
"version": "1.2.0",
"description": "CLI for Alacritty color theme and configuration switching.",
"main": "./src/index.js",
"bin": {
"alacritty-theme-switch": "./src/cli.js",
"ats": "./src/cli.js"
},
"author": {
"name": "Michael Tichopád",
"email": "[email protected]"
},
"contributors": [
{
"name": "Guilherme Henrique",
"email": "[email protected]"
},
{
"name": "Knosence",
"email": "[email protected]"
}
],
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tichopad/alacritty-theme-switch.git"
},
"bugs": {
"url": "https://github.com/tichopad/alacritty-theme-switch/issues"
},
"homepage": "https://github.com/tichopad/alacritty-theme-switch#readme",
"license": "MIT",
"keywords": [
"cli",
"command",
"console",
"terminal",
"alacritty",
"theme",
"configuration"
],
"scripts": {
"start": "run-p fix:* \"test:unit -- --watch\"",
"test": "run-p \"format -- --check\" lint test:unit",
"test:unit": "jest",
"fix:format": "npm run format -- --write",
"fix:lint": "npm run lint -- --fix",
"format": "prettier \"src/**/*.js\" \"__tests__/**/*.js\"",
"lint": "eslint \"src/**/*.js\" \"__tests__/**/*.js\"",
"precommit": "run-p fix:* test:unit",
"prepare": "husky install"
},
"dependencies": {
"deepmerge": "^4.2.2",
"fs-extra": "^10.0.0",
"inquirer": "^8.0.0",
"js-yaml": "^4.0.0",
"klaw-sync": "^6.0.0",
"meow": "^9.0.0"
},
"devDependencies": {
"eslint": "^8.0.1",
"husky": "^7.0.1",
"jest": "^27.0.5",
"mock-fs": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5"
}
}