-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 921 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
35
36
{
"name": "tournicoti",
"description": "Automatically rotate URLs in a full screen application.",
"version": "0.0.1",
"bin": "index.js",
"scripts": {
"clean": "rimraf release",
"lint": "eslint .",
"packager": "npm run clean && electron-packager . tournicoti --out release --platform=linux --arch=all",
"start": "electron ."
},
"keywords": [
"rotate",
"rotator",
"url"
],
"author": "Cyril Schumacher",
"license": "MIT",
"dependencies": {
"commander": "^2.20.0",
"debug": "^4.1.1",
"parse-duration": "^0.1.1",
"pkginfo": "^0.4.1"
},
"devDependencies": {
"electron": "^3.1.13",
"electron-packager": "^14.2.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"prettier": "^1.19.1",
"rimraf": "^3.0.2"
}
}