-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
55 lines (55 loc) · 1.31 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
{
"name": "alacritty-themes",
"version": "6.0.2",
"description": "Themes for Alacritty : A cross-platform GPU-Accelerated Terminal emulator",
"main": "index.js",
"bin": {
"alacritty-themes": "./bin/cli.js"
},
"scripts": {
"commit": "cz",
"deploy": "git push && git push --tags && npm publish",
"lint": "eslint .",
"semantic-release": "semantic-release",
"test": "mocha --recursive"
},
"keywords": [
"alacritty",
"theme",
"themes",
"terminal emulators",
"terminal"
],
"author": "Rajasegar Chandran <[email protected]>",
"license": "MIT",
"dependencies": {
"@iarna/toml": "^2.2.5",
"prompts": "2.4.2",
"temp": "0.9.4",
"yaml": "1.10.2"
},
"preferGlobal": true,
"devDependencies": {
"@semantic-release/changelog": "6.0.2",
"@semantic-release/git": "10.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"mocha": "10.2.0",
"mock-fs": "5.2.0",
"prettier": "2.8.6",
"semantic-release": "^19.0.2",
"sinon": "15.0.1"
},
"engines": {
"node": ">=14.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}