-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 970 Bytes
/
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
{
"name": "fast-reader",
"version": "1.2.1",
"description": "A tool for fast reading pdf docs",
"main": "src/main.js",
"scripts": {
"test": "mocha",
"start": "electron .",
"generate-docs": "jsdoc ./src/*.js -d ./docs",
"pretest": "eslint . --fix"
},
"keywords": [
"gui",
"pdf",
"reader",
"electron"
],
"author": "edurbrito",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/edurbrito/fast-reader.git"
},
"dependencies": {
"animate.css": "^3.7.2",
"bootstrap": "^4.4.1",
"electron": "^9.4.0",
"jquery": "^3.5.0",
"path": "^0.12.7",
"popper.js": "^1.16.1"
},
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jsdoc": "^3.6.4",
"mocha": "^7.1.1"
}
}