This repository has been archived by the owner on Mar 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
78 lines (78 loc) · 2.41 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
{
"name": "matterfront",
"version": "1.2.0",
"description": "Mattermost frontend app powered by electron",
"homepage": "https://github.com/lloeki/matterfront",
"author": "Brian Vanderbusch <brian@hackerhappyhour.com> (https://github.com/H3Chief)",
"contributors": [
"Loic Nageleisen <loic.nageleisen@gmail.com> (http://raptu.re)",
"Chris Jaynes (https://github.com/geekytime)"
],
"main": "./src/main.js",
"scripts": {
"build": "npm run js && electron-packager . Matterfront --out=dist --ignore='^/dist$' --asar --platform=all --arch=all --version=$npm_package_electronVersion --app-bundle-id='org.matterfront.app' --app-version=$npm_package_version --helper-bundle-id='org.matterfront.app.helper' --overwrite --icon=resources/mattermost",
"js": "webpack",
"js-watch": "webpack --watch",
"lint": "echo Lint started && eslint ./src --ignore-path .gitignore && echo Lint success",
"lint-watch": "watch \"npm run lint -s\" ./src ./test --wait=0",
"start": "electron .",
"start-watch": "node electron-watch.js",
"test": "mocha",
"test-watch": "mocha watch"
},
"electronVersion": "0.36.2",
"repository": {
"type": "git",
"url": "https://github.com/lloeki/matterfront"
},
"keywords": [
"Mattermost",
"electron"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lloeki/matterfront/issues"
},
"devDependencies": {
"babel-core": "~6.3.13",
"babel-loader": "~6.2.0",
"babel-preset-react": "~6.3.13",
"babel-register": "~6.3.13",
"chai": "~3.4.1",
"chai-jq": "0.0.9",
"chokidar": "^1.4.1",
"css-loader": "~0.23.0",
"electron-connect": "~0.3.3",
"electron-prebuilt": ">=0.36.2",
"eslint": "~1.10.2",
"ghooks": "~1.0.1",
"less": "~2.5.3",
"less-loader": "~2.2.2",
"lodash.once": "~3.0.1",
"mocha": "~2.3.4",
"proxyquire": "^1.7.3",
"razz": "~1.1.1",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"style-loader": "~0.13.0",
"watch": "~0.16.0",
"webpack": "^1.12.9",
"webpack-target-electron-renderer": "^0.3.0",
"zepto-node": "~1.0.0"
},
"dependencies": {
"bacon-dispatcher": "~0.9.9",
"baconjs": "~0.7.82",
"electron-packager": "^5.1.1",
"mkdirp": "^0.5.1",
"nconf": "~0.8.2",
"path-extra": "~3.0.0",
"react": "~0.14.3",
"react-dom": "~0.14.3"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint && npm run test"
}
}
}