-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "TuneBase",
"version": "0.1.1",
"description": "An app for tracking data from iTunes over time",
"main": "./app/index.js",
"repository": "https://github.com/ConnorChristensen/TuneBase.git",
"author": "ConnorChristensen <chriconn@oregonstate.edu>",
"license": "MIT",
"scripts": {
"start": "electron ./app/",
"dist": "electron-builder",
"lint": "./node_modules/.bin/eslint ./app/**/*.js || true"
},
"devDependencies": {
"commitizen": "^3.0.7",
"devtron": "^1.4.0",
"electron": "^4.1.3",
"electron-builder": "^20.39.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0"
},
"dependencies": {
"c3": "^0.6.14",
"comma-number": "^2.0.0",
"dexie": "^2.0.4",
"electron-store": "^3.1.0",
"moment": "^2.24.0",
"sha1": "^1.1.1",
"vue": "^2.6.10"
},
"build": {
"appId": "com.electron.${name}",
"directories": {
"output": "./dist/"
},
"mac": {
"category": "public.app-category.utilities"
},
"win": {
"target": "nsis"
}
}
}