This repository was archived by the owner on Jul 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.69 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.69 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
{
"name": "hawkeye",
"version": "0.2.0",
"productName": "Hawk Eye",
"description": "A useful app for GitHub Notifications",
"main": "main.js",
"scripts": {
"pack": "build --dir",
"dist": "build",
"dist-all": "build -mlw",
"build-all": "gulp && npm run dist-all",
"citask": "gulp configdefault && typings install && gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harksys/HawkEye.git"
},
"author": {
"name": "Hark Systems LTD.",
"email": "hello@harksys.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/harksys/HawkEye/issues"
},
"build": {
"appId": "harksys-hawkeye",
"files": [
"**/*",
"!src/js",
"!src/scss",
"!gulpfile.js",
"!README.md",
"!tsconfig.json",
"!tsconfig.main.json",
"!typings",
"!typings.json",
"!webpack.config.js",
"!webpack.dev.config.js"
],
"asar": true,
"linux": {
"arch": [
"ia32",
"x64"
],
"target": [
"deb",
"AppImage",
"rpm"
]
},
"win": {
"target": [
"squirrel"
]
},
"mac": {
"category": "ac.app-category.developer-tools"
}
},
"homepage": "https://github.com/harksys/HawkEye#readme",
"devDependencies": {
"css-loader": "^0.26.1",
"del": "^2.2.2",
"exports-loader": "^0.6.3",
"electron-builder": "^10.12.0",
"file-loader": "^0.9.0",
"electron": "1.4.11",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.0.0",
"gulp-typescript": "^3.1.3",
"imports-loader": "^0.7.0",
"node-sass": "4.0.0",
"run-sequence": "^1.2.2",
"style-loader": "^0.13.1",
"ts-loader": "^1.3.1",
"typescript": "^2.1.4",
"typings": "^2.0.0",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-stream": "^3.2.0"
},
"dependencies": {
"async": "^2.1.4",
"compass-mixins": "^0.12.10",
"electron-auto-updater": "^0.8.5",
"electron-squirrel-startup": "^1.0.0",
"electron-window-state": "^4.0.1",
"es6-promise": "^4.0.5",
"lodash": "^4.17.2",
"moment": "^2.17.1",
"node-schedule": "^1.2.0",
"nslog": "^3.0.0",
"object-assign": "^4.1.0",
"octonode": "^0.7.7",
"q": "^1.4.1",
"query-string": "^4.2.3",
"react": "^15.4.1",
"react-addons-shallow-compare": "^15.4.2",
"react-dom": "^15.4.1",
"react-octicon": "^2.0.0",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"react-virtualized": "^8.8.1",
"redux": "^3.6.0",
"redux-persist": "^3.5.0",
"redux-thunk": "^2.1.0",
"request": "^2.79.0",
"whatwg-fetch": "^2.0.1"
}
}