-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
44
45
{
"name": "gmusicprocurator",
"productName": "GMusicProcurator",
"version": "0.0.1",
"description": "Desktop integration app for GMusicProcurator",
"productDescription": "Play music from the Google Play Music streaming service",
"repository": "malept/gmusicprocurator-app",
"homepage": "https://github.com/malept/gmusicprocurator-app#readme",
"author": "Mark Lee",
"license": "GPL-3.0+",
"main": "src/main.coffee",
"private": true,
"dependencies": {
"electron-compile": "^6.0.0"
},
"devDependencies": {
"babel-preset-stage-0": "^6.16.0",
"coffeelint": "^1.16.0",
"electron-forge": "^3.2.0",
"electron-prebuilt-compile": "1.4.12",
"eslint": "^5.0.0",
"eslint-plugin-import": "^2.17.3"
},
"engines": {
"node": ">= 6.0"
},
"scripts": {
"lint": "coffeelint src && eslint forge.config.js ci/cache-prebuilt-electron.js src/preload-launcher.js",
"package": "npm run lint && electron-forge make --arch all",
"start": "electron-forge start"
},
"config": {
"forge": "forge.config.js"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"installedESLint": true,
"plugins": [
"import"
]
}
}