-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
94 lines (94 loc) · 2.21 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "code-theme-converter",
"version": "1.2.1",
"description": "Convert any vscode theme with ease!",
"bin": {
"code2subl": "bin/code2subl.js",
"code2idea": "bin/code2idea.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "yarn build",
"test": "jest",
"lint": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/tobiastimm/code-theme-converter.git"
},
"bugs": {
"url": "https://github.com/tobiastimm/code-theme-converter/issues"
},
"keywords": [
"vscode",
"sublime",
"idea",
"theme",
"convert"
],
"author": "Tobias Timm <[email protected]>",
"license": "MIT",
"dependencies": {
"@xstate/fsm": "^1.5.0",
"chalk": "^2.4.2",
"cmd-shim": "^2.0.2",
"commander": "^5.0.0",
"download-git-repo": "^1.1.0",
"execa": "^1.0.0",
"fs-extra": "^8.1.0",
"js2xmlparser": "^4.0.1",
"json5": "^2.1.0",
"minimist": "^1.2.0",
"plist": "^3.0.1",
"ramda": "^0.27.0",
"rimraf": "^2.6.3",
"slash": "^2.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/jest": "^25.1.3",
"@types/json5": "^0.0.30",
"@types/mock-fs": "^4.10.0",
"@types/node": "^13.11.1",
"@types/plist": "^3.0.2",
"@types/ramda": "^0.27.3",
"@types/rimraf": "^2.0.3",
"@types/uuid": "^7.0.0",
"@typescript-eslint/eslint-plugin": "2",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-with-typescript": "^14.0.0",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "4",
"eslint-plugin-standard": "4",
"husky": ">=4",
"inquirer": "^6.2.2",
"jest": "^25.1.0",
"lint-staged": ">=10",
"mock-fs": "^4.11.0",
"mockdate": "^3.0.2",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"typescript": "^3.8.2"
},
"engines": {
"node": ">=8.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --fix"
}
}