forked from gitify-app/gitify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 4.12 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
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
117
118
119
120
{
"name": "gitify",
"version": "2.0.2",
"description": "GitHub Notifications on your menu bar.",
"main": "main.js",
"scripts": {
"copy-fonts": "mkdir -p dist/fonts && cp -r node_modules/font-awesome/fonts dist/ && cp -r node_modules/octicons/build/font/* dist/fonts",
"build-js": "mkdir -p dist/js && browserify -t babelify --ignore-missing --no-builtins --no-commondir --insert-global-vars=\"global\" --no-browser-field --exclude electron src/js/app.js | uglifyjs > dist/js/app.js",
"build-scss": "mkdir -p dist/css && node-sass --output-style compressed src/scss/app.scss dist/css/app.css",
"build": "npm run copy-fonts && npm run build-js && npm run build-scss",
"watch-js": "watchify -t babelify --ignore-missing --no-builtins --no-commondir --insert-global-vars=\"global\" --no-browser-field --exclude electron src/js/app.js -o dist/js/app.js -v",
"watch-scss": "node-sass -w src/scss/app.scss dist/css/app.css",
"watch": "npm run build && npm run watch-js & npm run watch-scss",
"package": "electron-packager . Gitify --overwrite --platform=darwin --arch=x64 --electron-version=1.6.10 --asar=true --icon=images/app-icon.icns --prune --ignore='src' --ignore='coverage'",
"codesign": "bash scripts/codesign.bash",
"dist": "npm run build && npm run package && npm run codesign",
"lint-js": "eslint 'src/js/' 'src/js/app.js' 'main.js'",
"lint-sass": "sass-lint -c .sass-lint.yml -v -q",
"prettier": "prettier --single-quote --trailing-comma es5 --write 'src/js/**/*.js'",
"jest": "jest",
"test": "npm run lint-js && npm run lint-sass && npm run jest -- --coverage",
"start": "electron . –enable-logging"
},
"repository": {
"type": "git",
"url": "https://github.com/manosim/gitify.git"
},
"keywords": [
"gitify",
"github",
"notifier",
"notifications",
"electron",
"atom",
"shell",
"app",
"tray"
],
"author": "Emmanouil Konstantinidis",
"contributors": [
{
"name": "Emmanouil Konstantinidis",
"url": "https://githib.com/manosim"
},
{
"name": "Jake 'Sid' Smith",
"url": "https://githib.com/JakeSidSmith"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/manosim/gitify/issues"
},
"homepage": "http://www.gitify.io/",
"jest": {
"coverageThreshold": {
"global": {
"lines": 95
}
}
},
"dependencies": {
"auto-launch": "=5.0.1",
"axios": "=0.16.1",
"bootstrap": "=4.0.0-alpha.6",
"electron-gh-releases": "=2.0.4",
"font-awesome": "=4.7.0",
"icheck": "=1.0.2",
"immutable": "=3.8.1",
"malarkey": "=1.3.3",
"moment": "=2.18.1",
"nprogress": "=0.2.0",
"octicons": "=4.4.0",
"prop-types": "=15.5.10",
"react": "=15.5.4",
"react-addons-css-transition-group": "=15.5.2",
"react-addons-shallow-compare": "=15.5.2",
"react-addons-test-utils": "=15.5.1",
"react-dom": "=15.5.4",
"react-emojione": "=2.0.0",
"react-icheck": "=0.3.8",
"react-modal": "=1.7.7",
"react-redux": "=5.0.5",
"react-router": "=4.1.1",
"react-router-dom": "=4.1.1",
"redux": "=3.6.0",
"redux-form": "=6.7.0",
"redux-storage": "=4.1.2",
"redux-storage-decorator-filter": "=1.1.8",
"redux-storage-engine-localstorage": "=1.1.4",
"redux-storage-merger-immutablejs": "=1.0.5",
"redux-thunk": "=2.2.0"
},
"devDependencies": {
"babel-eslint": "=7.2.3",
"babel-jest": "=20.0.3",
"babel-preset-es2015": "=6.24.1",
"babel-preset-react": "=6.24.1",
"babel-preset-stage-0": "=6.24.1",
"babelify": "=7.3.0",
"browserify": "=14.4.0",
"electron": "=1.6.10",
"electron-packager": "=8.7.0",
"enzyme": "=2.8.2",
"eslint": "=3.19.0",
"eslint-config-dabapps": "github:dabapps/eslint-config-dabapps#v3.1.1",
"eslint-plugin-import": "=2.3.0",
"eslint-plugin-prettier": "=2.1.1",
"jest": "=20.0.4",
"nock": "=9.0.13",
"node-sass": "=4.5.3",
"prettier": "=1.4.4",
"react-test-renderer": "=15.5.4",
"redux-logger": "=3.0.6",
"redux-mock-store": "=1.2.3",
"sass-lint": "=1.10.2 -v",
"uglify-js": "=3.0.12",
"watchify": "=3.9.0"
}
}