-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.82 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
{
"name": "eyearesee",
"version": "0.5.0",
"description": "Electron IRC Client",
"main": "index.js",
"scripts": {
"build-css": "lessc -x client/less/index.less > public/css/dusk.css",
"dev": "npm run build-css && npm start",
"lint": "lintit",
"package-osx": "make package-osx",
"start": "electron .",
"pretest": "npm run lint",
"test": "EYEARESEE_HOME=$(pwd)/test/fixtures/HOME tap test --cov",
"postinstall": "electron-builder install-app-deps",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"build": {
"appId": "com.evanlucas.eyearesee",
"asar": false,
"mac": {
"category": "public.app-category.developer-tools"
}
},
"dependencies": {
"argsplit": "~1.0.4",
"autolinker": "~0.22.0",
"bootstrap": "~3.3.6",
"completor": "~1.0.0",
"daily-file-writer": "~1.0.0",
"debug": "~2.2.0",
"delegate-dom": "0.0.1",
"electron-window-state": "^4.1.1",
"eyearesee-client": "~1.5.1",
"keytar": "~3.0.0",
"leveldown": "~1.4.3",
"levelup": "~1.3.1",
"map-util": "~2.1.1",
"mkdirp": "~0.5.1",
"path-to-regexp": "~1.2.1",
"slate-irc": "~0.8.1",
"subleveldown": "~2.1.0",
"vdelement": "~1.0.1",
"virtual-dom": "~2.1.1"
},
"devDependencies": {
"chalk": "~1.1.3",
"electron": "^1.6.11",
"electron-builder": "^19.8.0",
"electron-packager": "~5.2.1",
"less": "^2.7.1",
"lintit": "~1.0.1",
"semver": "~5.1.0",
"tap": "~5.0.0"
},
"bundledDependencies": [
"delegate-dom"
],
"license": "MIT",
"author": "Evan Lucas <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/evanlucas/eyearesee"
},
"homepage": "https://github.com/evanlucas/eyearesee",
"bugs": {
"url": "https://github.com/evanlucas/eyearesee/issues"
}
}