This repository was archived by the owner on Aug 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.72 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.72 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "RedmineTimeTracker",
"version": "0.9.8",
"description": "Time Tracking tool for Redmine",
"author": "Yujiro Takeda <siro.cola@gmail.com>",
"license": "MIT",
"main": "./out/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ujiro99/RedmineTimeTracker.git"
},
"bugs": {
"url": "https://github.com/ujiro99/RedmineTimeTracker/issues"
},
"keywords": [
"redmine",
"electron-app",
"chrome-app"
],
"scripts": {
"postinstall": "install-app-deps",
"test": "karma start --single-run",
"start": "electron ./app",
"clean": "rimraf ./release/electron",
"dist:chrome": "grunt build-chrome && grunt compress:ci",
"dist:electron": "grunt build-electron && yarn run clean && build --x64 --ia32"
},
"build": {
"appId": "org.ujiro99.redminetimetracker",
"files": [
"out",
"node_modules"
],
"directories": {
"output": "release/electron"
},
"mac": {
"category": "public.app-category.developer-tools"
},
"dmg": {
"contents": [
{
"x": 192,
"y": 344
},
{
"x": 448,
"y": 344,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
"nsis",
"portable"
]
},
"linux": {
"category": "Development",
"target": [
"AppImage",
"deb"
],
"icon": "build/icon.iconset"
}
},
"dependencies": {
"electron-debug": "^1.0.0",
"electron-is-dev": "^0.1.2",
"electron-json-storage": "^2.1.0",
"electron-updater": "^2.1.2"
},
"devDependencies": {
"angular-mocks": "1.4.1",
"chai": "~1.8.1",
"devtron": "^1.1.0",
"electron": "^1.6.10",
"electron-builder": "^18.8.1",
"grunt": "~0.4.1",
"grunt-bower-task": "^0.4.0",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-coffee": "~0.7.0",
"grunt-contrib-compress": "^0.8.0",
"grunt-contrib-connect": "~0.5.0",
"grunt-contrib-copy": "^0.5.0",
"grunt-contrib-jade": "~0.8.0",
"grunt-contrib-stylus": "^0.21.0",
"grunt-contrib-uglify": "~0.2.7",
"grunt-este-watch": "^0.1.16",
"grunt-ngmin": "0.0.3",
"grunt-release": "^0.9.0",
"ibrik": "^2.0.0",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coffee-preprocessor": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.0",
"load-grunt-tasks": "^0.4.0",
"mocha": "~1.14.0",
"rimraf": "^2.5.4",
"sinon": "~1.9.1",
"xo": "^0.16.0"
},
"xo": {
"esnext": true,
"envs": [
"node",
"browser"
]
}
}