-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.3 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
{
"name": "@campvanilla/ditto-cli",
"version": "1.1.2",
"dependencies": {
"ansi-styles": "^4.3.0",
"enquirer": "^2.3.6",
"json5": "^2.1.3"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2"
},
"description": "Convert vscode theme to iterm2 colors",
"main": "src/index.js",
"files": [
"src"
],
"bin": {
"@campvanilla/ditto-cli": "src/index.js",
"ditto-cli": "src/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"test:ci": "CI=true jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/campvanilla/ditto.git"
},
"keywords": [
"vscode",
"theme",
"iterm2",
"cli",
"themes",
"sync"
],
"author": "Aditi Mohanty <[email protected]>, Abinav Seelan <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/campvanilla/ditto/issues"
},
"homepage": "https://github.com/campvanilla/ditto#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix"
]
}
}