-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 941 Bytes
/
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
{
"name": "zendoro",
"productName": "Zendoro",
"version": "0.5.0",
"description": "A simple timer to use with the Pomodoro Technique",
"main": "main.js",
"scripts": {
"lint": "eslint .",
"start": "electron .",
"dist": "electron-packager . --icon assets/images/AppIcon"
},
"repository": "https://github.com/kprav33n/zendoro",
"author": "Praveen Kumar <[email protected]>",
"license": "MIT",
"dependencies": {
"electron": "^2.0.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"electron-packager": "^12.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-standard": "^3.0.1"
},
"eslintIgnore": [
"node_modules"
]
}