-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 3.57 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"version": "0.9.173",
"name": "biblos.js",
"productName": "Biblos.js",
"description": "Biblos.js, a.k.a Morpheus for Ancient Greek based on CouchDB && Electron.js",
"author": "M. Bykov <m.bykov@gmail.com>",
"copyright": "© 2017- 2019, M.Bykov",
"homepage": "http://diglossa.org",
"license": "GPL-3.0",
"main": "app/background.js",
"build": {
"appId": "org.diglossa.biblos.js",
"files": [
"app/**/*",
"src/**/*",
"resources/**/*",
"package.json"
],
"directories": {
"buildResources": "resources"
},
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"icon": "resources/icon.icns"
},
"win": {
"icon": "resources/icon.ico",
"publisherName": "Michael Bykov",
"publish": [
"github"
]
},
"linux": {
"category": "Educational software",
"target": [
{
"target": "deb",
"arch": [
"x64"
]
},
{
"target": "rpm",
"arch": [
"x64"
]
}
],
"icon": "resources/icons"
},
"publish": "github"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"preunit": "webpack --config=build/webpack.unit.config.js --env=test --display=none",
"unit": "electron-mocha temp/specs.js --renderer --require source-map-support/register",
"pree2e": "webpack --config=build/webpack.app.config.js --env=test --display=none && webpack --config=build/webpack.e2e.config.js --env=test --display=none",
"e2e": "mocha temp/e2e.js --require source-map-support/register",
"test": "npm run unit && npm run e2e",
"start": "node build/start.js 2>/dev/null",
"release_": "npm test && webpack --config=build/webpack.app.config.js --env=production && electron-builder",
"release": "webpack --config=build/webpack.app.config.js --env=production && electron-builder"
},
"dependencies": {
"antrax": "^0.9.151",
"axios": "^0.18.0",
"electron-clipboard-extended": "^1.1.1",
"electron-settings": "^3.2.0",
"file-loader": "^3.0.1",
"fs-extra": "^8.1.0",
"markdown": "^0.5.0",
"markdown-it": "^8.4.2",
"markdown-it-attrs": "^2.3.2",
"memorystream": "^0.3.1",
"mississippi": "^4.0.0",
"mousetrap": "^1.6.3",
"nano": "^8.0.1",
"node-couchdb": "^1.3.0",
"normalize.css": "^8.0.1",
"orthos": "^0.6.3",
"pouchdb": "^7.0.0",
"pouchdb-size": "^4.2.0",
"pug": "^2.0.3",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"showdown": "^1.9.0",
"speckled-band": "^3.1.3",
"split.js": "^1.5.10",
"webpack-cli": "^3.3.8"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"babel-loader": "^8.0.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"chai": "^4.2.0",
"css-loader": "^2.1.1",
"electron": "4.1.1",
"electron-builder": "^20.39.0",
"electron-mocha": "^6.0.4",
"friendly-errors-webpack-plugin": "^1.7.0",
"mocha": "^5.2.0",
"source-map-support": "^0.5.9",
"spectron": "^5.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbykov/biblos.js.git"
},
"bugs": {
"url": "https://github.com/mbykov/biblos.js/issues"
}
}