This repository has been archived by the owner on Apr 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.63 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
{
"name": "hybsearch",
"private": true,
"version": "4.0.0-beta.3",
"description": "Find nonmonophyly in genetic sequences",
"repository": "hybsearch/hybsearch",
"homepage": "https://hybsearch.github.io/",
"main": "main.js",
"license": "MIT",
"scripts": {
"build": "electron-builder --mac --windows --linux",
"pack": "electron-builder --dir",
"start": "./hybsearch .",
"prettier": "prettier --write bin/*.js lib/*.js electron/*.{js,css} scripts/*.js vendor/*.js"
},
"build": {
"appId": "edu.stolaf.bio.hybsearch",
"productName": "HybSearch",
"files": [
"electron/",
"data/",
"lib/",
"bin/",
"hamdis/",
"main.js",
"node_modules/",
"!node_modules/prettier/",
"vendor/*.js"
]
},
"prettier": {
"useTabs": true,
"semi": false,
"trailingComma": "es5",
"singleQuote": true
},
"bundledDependencies": [
"biojs-io-newick",
"combinations-generator",
"d3",
"dedent",
"electron-unhandled",
"execa",
"file-extension",
"get-stdin",
"lodash",
"loud-rejection",
"minimist",
"normalize.css",
"serialize-error",
"tempfile",
"ws"
],
"dependencies": {
"biojs-io-newick": "1.5.0",
"combinations-generator": "1.0.1",
"d3": "3.5.17",
"dedent": "0.7.0",
"electron-unhandled": "0.2.0",
"electron-updater": "2.21.0",
"execa": "0.8.0",
"get-stdin": "5.0.1",
"lodash": "4.17.4",
"loud-rejection": "1.6.0",
"minimist": "1.2.0",
"normalize.css": "7.0.0",
"serialize-error": "2.1.0",
"tempfile": "2.0.0",
"wordwrap": "1.0.0",
"ws": "4.0.0"
}
}