Skip to content

Commit

Permalink
0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bukinoshita committed Jan 6, 2018
1 parent aae2487 commit 3071b1c
Showing 1 changed file with 24 additions and 7 deletions.
31 changes: 24 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "taskr",
"version": "0.2.2",
"version": "0.3.0",
"description": "A simple task manager app",
"main": "main/index.js",
"repository": "https://github.com/bukinoshita/taskr.git",
Expand All @@ -17,17 +17,26 @@
},
"build": {
"appId": "taskr",
"files": ["**/*", "!renderer", "renderer/out"],
"files": [
"**/*",
"!renderer",
"renderer/out"
],
"win": {
"target": ["squirrel"],
"target": [
"squirrel"
],
"icon": "main/static/icon.ico"
},
"mac": {
"category": "public.app-category.developer-tools",
"icon": "main/static/icon.icns"
},
"linux": {
"target": ["AppImage", "deb"]
"target": [
"AppImage",
"deb"
]
}
},
"dependencies": {
Expand Down Expand Up @@ -55,7 +64,11 @@
"xo": "^0.18.2"
},
"xo": {
"extends": ["prettier", "prettier/react", "plugin:react/recommended"],
"extends": [
"prettier",
"prettier/react",
"plugin:react/recommended"
],
"rules": {
"react/no-unescaped-entities": 0,
"react/react-in-jsx-scope": 0,
Expand All @@ -66,8 +79,12 @@
"no-return-assign": 0,
"import/prefer-default-export": 0
},
"ignores": ["node_modules"],
"globals": ["localStorage"]
"ignores": [
"node_modules"
],
"globals": [
"localStorage"
]
},
"lint-staged": {
"*.js": [
Expand Down

0 comments on commit 3071b1c

Please sign in to comment.