-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "syncer",
"version": "0.1.0",
"description": "Keeps a local git repo tightly synced w/ a remote",
"scripts": {
"test": "electron test.js",
"start": "electron index.js",
"console": "electron console.js",
"build": "node_modules/.bin/electron-packager . --mac --overwrite --asar --out .builds"
},
"repository": {
"type": "git",
"url": "https://github.com/rissem/syncer"
},
"keywords": [
"git",
"sync",
"dev"
],
"author": "Mike Risse",
"license": "MIT",
"bugs": {
"url": "https://github.com/rissem/syncer/issues"
},
"homepage": "https://github.com/rissem/syncer",
"devDependencies": {
"babel-eslint": "^7.1.0",
"chai": "^2.3.0",
"chai-as-promised": "^5.0.0",
"electron-packager": "^8.5.0",
"electron-rebuild": "^1.1.5",
"eslint": "^3.8.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^6.4.1",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^2.2.5",
"rimraf": "^2.3.4"
},
"dependencies": {
"chokidar": "^1.4.2",
"electron": "^1.4.14",
"underscore": "^1.8.3"
}
}