forked from mikaa123/linear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "linear",
"version": "1.3.0",
"description": "Ruler application with web development in mind.",
"main": "main.js",
"scripts": {
"test": "xo",
"start": "electron main.js",
"debug": "electron main.js --debug",
"package": "electron-packager . linear --platform=darwin --arch=all --version=1.2.2 --icon=src/assets/images/lrMacIcon.icns --out=dist --overwrite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikaa123/linear.git"
},
"keywords": [
"ruler",
"measure",
"electron"
],
"author": "Michael Sokol",
"license": "MIT",
"homepage": "http://mikaa123.github.io/linear-website/",
"devDependencies": {
"electron-packager": "^7.0.3",
"electron-prebuilt": "^1.2.2",
"xo": "^0.13.0"
},
"dependencies": {
"electron-debug": "^0.5.1",
"nconf": "^0.8.2",
"shelljs": "^0.6.0",
"title-case": "^1.1.2",
"user-home": "^2.0.0"
},
"xo": {
"esnext": true,
"envs": [
"node",
"browser"
]
}
}