-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.29 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
{
"name": "@kancolle/browser",
"version": "1.0.3",
"description": "Minimal Electron-based KanColle browser",
"keywords": [
"kancolle",
"electron"
],
"license": "MIT",
"author": "gakada (https://github.com/gakada)",
"contributors": [],
"homepage": "https://github.com/kcwiki/kancolle-browser#readme",
"bugs": "https://github.com/kcwiki/kancolle-browser/issues",
"repository": "kcwiki/kancolle-browser",
"main": "src/main.js",
"files": [
"src"
],
"bin": {
"kancolle-browser": "./src/run.js"
},
"scripts": {
"format": "prettier --loglevel warn --write '**/*.{js,json,md,ts,yaml,yml}'",
"lint": "eslint --fix .",
"test": "yarn format && yarn lint",
"up": "yarn upgrade --latest"
},
"dependencies": {
"electron": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"parser": "babel-eslint"
},
"prettier": {
"printWidth": 150,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}