-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.18 KB
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
{
"name": "smartbook-editor",
"version": "1.0.0-alpha",
"description": "Editor for Smartbook-app bilingual books",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erithion/smartbook-editor.git"
},
"author": "Bondartsov Artyom <erithion@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/erithion/smartbook-editor/issues"
},
"homepage": "https://github.com/erithion/smartbook-editor#readme",
"dependencies": {
"bootbox": "^4.4.0",
"bootstrap": "^4.3.1",
"codemirror": "^5.44.0",
"font-awesome": "^4.7.0",
"jquery": "^3.3.1",
"popper.js": "^1.14.7"
},
"devDependencies": {
"chai": "^4.2.0",
"electron": "^4.0.6",
"electron-builder": "^20.38.5",
"mocha": "^6.0.1"
},
"build": {
"appId": "com.smartbook-editor.app",
"directories": {
"buildResources": "ico"
},
"win": {
"target": "portable"
},
"linux": {
"target": "deb",
"category": "Education"
}
}
}