forked from acheronfail/xi-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.78 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.78 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "xi-electron",
"productName": "xi-electron",
"version": "1.0.0",
"description": "An Electron-based front-end for the xi-editor",
"main": "src/main.js",
"scripts": {
"start:dev": "cross-env NODE_ENV=development electron-forge start",
"start:prod": "cross-env NODE_ENV=production electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"lint": "eslint src",
"install:core": "./bin/install-core.sh"
},
"keywords": [],
"author": "callodacity",
"license": "MIT",
"config": {
"forge": {
"make_targets": {
"win32": ["squirrel"],
"darwin": ["zip"],
"linux": ["deb", "rpm"]
},
"electronPackagerConfig": {},
"electronWinstallerConfig": {
"name": "xi_electron"
},
"electronInstallerDebian": {},
"electronInstallerRedhat": {},
"github_repository": {
"owner": "",
"name": ""
},
"windowsStoreConfig": {
"packageName": "",
"name": "xielectron"
}
}
},
"dependencies": {
"deep-freeze": "^0.0.1",
"draggabilly": "^2.1.1",
"electron-compile": "^6.4.0",
"fs-extra": "^2.1.2",
"proper-lockfile": "^2.0.1",
"strip-json-comments": "^2.0.1"
},
"devDependencies": {
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.4.0",
"babel-preset-react-app": "^3.0.2",
"eslint-config-react-app": "^2.0.0",
"babili": "^0.0.12",
"cross-env": "^4.0.0",
"electron-forge": "^3.2.0",
"electron-prebuilt-compile": "1.6.2",
"babel-eslint": "^7.2.3",
"eslint": "^4.1.1",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0"
}
}