-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
84 lines (84 loc) · 2.85 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
{
"name": "Mobster",
"version": "0.0.48",
"description": "A cross-platform mob programming timer built on web technologies",
"main": "main.js",
"scripts": {
"start": "NODE_ENV=dev concurrently --kill-others 'npm run webpack-dev' 'npm run build-node && npm test && electron .'",
"startprod": "NODE_ENV=production npm test && npm run build-node && npm run webpack-production && electron .",
"webpack-dev": "webpack-dev-server --hot --port 8080",
"webpack-production": "webpack -p --env.production",
"build-node": "npm run generate-ipc && npm run types",
"generate-ipc": "elm-electron src/Ipc.elm --ts typescript/ipc.ts --elm src/IpcSerializer.elm",
"test-watch": "npm test; fswatch -0 src tests -e '.*' -i \\.elm$ | xargs -0 -n1 -I{} npm test",
"test": "clear && echo 'running tests' && elm-test",
"pack": "build --dir",
"dist-mac": "build --mac",
"dist-win": "build --win",
"dist-linux": "build --linux",
"dist": "build --mac --win --linux",
"release": "build --mac --win --linux",
"types": "tsc"
},
"build": {
"appId": "com.dillonkearns.mobster",
"mac": {
"category": "Utility"
},
"files": [
"**/*",
"!web/",
"!**/*.ts",
"!**/*.elm",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme,test,__tests__,tests,powered-test,example,examples,*.d.ts}",
"!**/node_modules/.bin",
"!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}",
"!**/._*",
"!.editorconfig",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,__pycache__,thumbs.db,.gitignore,.gitattributes,.flowconfig,.yarn-metadata.json,.idea,.vs,appveyor.yml,.travis.yml,circle.yml,npm-debug.log,.nyc_output,yarn.lock,.yarn-integrity}"
]
},
"repository": "https://github.com/dillonkearns/mobster",
"keywords": [
"Electron",
"mob programming",
"timer",
"Agile"
],
"author": "Dillon Kearns",
"license": "MIT",
"devDependencies": {
"@types/jquery": "^3.2.16",
"@types/node": "^8.0.53",
"@types/universal-analytics": "^0.4.2",
"@types/webpack": "^3.8.1",
"concurrently": "^3.5.1",
"devtron": "^1.4.0",
"electron": "1.8.2-beta.4",
"electron-builder": "19.45.5",
"elm": "^0.18.0",
"elm-electron": "0.0.3",
"elm-hot-loader": "^0.5.4",
"elm-test": "^0.18.12",
"elm-webpack-loader": "^4.4.0",
"ts-loader": "^3.4.0",
"ts-node": "^3.3.0",
"typescript": "2.5.3",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
},
"dependencies": {
"bugsnag": "^2.1.3",
"clipboard": "^1.6.1",
"electron-debug": "^1.5.0",
"electron-is-dev": "^0.3.0",
"electron-log": "^2.2.14",
"electron-updater": "^2.20.1",
"highlight.js": "^9.10.0",
"jquery": "^3.3.1",
"machine-uuid": "^1.2.0",
"ms": "^2.1.1",
"node-osascript": "^2.0.0",
"universal-analytics": "^0.4.16"
}
}