Skip to content

Commit

Permalink
0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bukinoshita committed Dec 28, 2017
1 parent f442bf6 commit a2d3a2a
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "taskr",
"version": "0.0.0",
"version": "0.0.1",
"description": "A simple task manager app",
"main": "main/index.js",
"repository": "https://github.com/bukinoshita/taskr.git",
Expand All @@ -15,9 +15,15 @@
},
"build": {
"appId": "taskr",
"files": ["**/*", "!renderer", "renderer/out"],
"files": [
"**/*",
"!renderer",
"renderer/out"
],
"win": {
"target": ["squirrel"],
"target": [
"squirrel"
],
"icon": "main/static/icon.ico"
},
"mac": {
Expand All @@ -44,7 +50,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 @@ -53,7 +63,11 @@
"default-case": 0,
"no-case-declarations": 0
},
"ignores": ["node_modules"],
"globals": ["localStorage"]
"ignores": [
"node_modules"
],
"globals": [
"localStorage"
]
}
}

0 comments on commit a2d3a2a

Please sign in to comment.