-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
183 lines (183 loc) · 6.07 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
{
"name": "breakout-tomato",
"productName": "Tomato",
"version": "0.0.1",
"description": "Electrified tomatos are not good for your health",
"main": "main.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/dreidev/breakout-tomato/issues"
},
"homepage": "https://github.com/dreidev/breakout-tomato#readme",
"repository": "https://github.com/dreidev/breakout-tomato.git",
"author": {
"name": "Clive Makamara",
"email": "clive@makamara.me",
"url": "http://github.com/cmosh",
"organization": "dreidev"
},
"keywords": [
"dreidev",
"cmosh",
"tomato",
"electron",
"timer",
"breakout",
"breakout-timeline",
"breakout-tomato",
"timeline",
"time"
],
"scripts": {
"test": "cross-env NODE_ENV=test BABEL_DISABLE_CACHE=1 mocha --retries 2 --compilers js:babel-register --recursive --require ./test/setup.js test/**/*.spec.js",
"test-all": "npm run lint && npm run flow && npm run test && npm run build",
"test-watch": "npm test -- --watch",
"test-e2e": "cross-env NODE_ENV=test BABEL_DISABLE_CACHE=1 mocha --retries 2 --compilers js:babel-register --require ./test/setup.js ./test/e2e.js",
"lint": "eslint --cache --format=node_modules/eslint-formatter-pretty .",
"lint-fix": "npm run lint -- --fix",
"hot-server": "cross-env NODE_ENV=development node --max_old_space_size=2096 -r babel-register server.js",
"build-main": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.electron.js --progress --profile --colors",
"build-renderer": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.production.js --progress --profile --colors",
"build": "npm run build-main && npm run build-renderer",
"start": "cross-env NODE_ENV=production electron ./app/",
"flow": "flow",
"flow-typed": "flow-t.yped install",
"start-hot": "cross-env HOT=1 NODE_ENV=development electron -r babel-register -r babel-polyfill ./app/main.development",
"postinstall": "concurrently \"install-app-deps\" \"node node_modules/fbjs-scripts/node/check-dev-engines.js package.json\"",
"dev": "npm run hot-server -- --start-hot",
"package": "npm run build && build --publish never",
"package-win": "npm run build && build --win --x64 --ia32 --publish never",
"package-linux": "npm run build && build --linux --x64 --publish never",
"package-linux32": "npm run build && build --linux --ia32 --publish never",
"package-mac": "npm run build && build --mac --x64 --publish never",
"package-mac32": "npm run build && build --mac --ia32 --publish never",
"package-all": "npm run build && build -mwl",
"cleanup": "mop -v"
},
"browserslist": "electron 1.4",
"build": {
"productName": "Tomato",
"appId": "com.dreidev.breakout-tomato",
"category": "public.app-category.tools",
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"files": [
"dist/",
"node_modules/",
"app.html",
"main.js",
"main.js.map",
"package.json"
],
"win": {
"target": "nsis"
},
"linux": {
"target": [
"deb",
"AppImage"
]
}
},
"directories": {
"buildResources": "resources",
"output": "release"
},
"bin": {
"electron": "./node_modules/.bin/electron"
},
"devDependencies": {
"asar": "^0.13.0",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-tcomb": "^0.3.24",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-es2015-classes": "^6.22.0",
"babel-plugin-webpack-loaders": "^0.8.0",
"babel-polyfill": "^6.22.0",
"babel-preset-env": "^1.1.8",
"babel-preset-react": "^6.22.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.22.0",
"babili-webpack-plugin": "^0.0.9",
"boiler-room-custodian": "^0.6.1",
"chai": "^3.5.0",
"concurrently": "^3.1.0",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"devtron": "^1.4.0",
"electron": "^1.4.15",
"electron-builder": "^13.3.2",
"electron-devtools-installer": "^2.0.1",
"enzyme": "^2.7.1",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-formatter-pretty": "^1.1.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-compat": "^1.0.1",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-flowtype-errors": "^3.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.9.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"fbjs-scripts": "^0.7.1",
"file-loader": "^0.10.0",
"flow-bin": "^0.38.0",
"flow-typed": "^2.0.0",
"html-webpack-plugin": "^2.26.0",
"jsdom": "^9.9.1",
"json-loader": "^0.5.4",
"minimist": "^1.2.0",
"mocha": "^3.2.0",
"react-addons-test-utils": "^15.4.2",
"redux-logger": "^2.7.4",
"sinon": "^1.17.7",
"spectron": "^3.4.1",
"style-loader": "^0.13.1",
"tcomb": "^3.2.16",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.15.0",
"webpack-merge": "^2.4.0",
"webpack-validator": "^2.3.0"
},
"dependencies": {
"electron-debug": "^1.1.0",
"font-awesome": "^4.7.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"source-map-support": "^0.4.10"
},
"devEngines": {
"node": ">=6.x",
"npm": ">=3.x"
}
}