-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
58 lines (58 loc) · 1.73 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
{
"name": "uniread",
"version": "0.0.28",
"description": "Uniread is Spritz like CLI fast reading software. ",
"main": "index.js",
"repository": "https://github.com/nemanjan00/uniread",
"author": "Nemanja Nedeljkovic <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.17",
"dateformat": "^3.0.3",
"epub": "https://github.com/nemanjan00/epub.git#67e7822d0be55f9cb0594f23dd034e2358439f63",
"file-type": "^8.0.0",
"html-to-text": "^5.1.1",
"minimist": "^1.2.0",
"opencollective-postinstall": "^2.0.0",
"pdfjs-dist": "^2.8.335",
"snyk": "^1.189.0",
"textversionjs": "^1.1.1",
"update-notifier": "^2.5.0"
},
"scripts": {
"get-books": "./devScripts/getBooks.sh",
"lint": "./node_modules/.bin/eslint . --fix",
"test": "./node_modules/.bin/mocha --reporter spec --timeout 60000 tests/index.js",
"coverage": "./node_modules/.bin/nyc ./node_modules/.bin/mocha --reporter spec --timeout 60000 tests/index.js",
"watch-cli": "nodemon -I ./bin/uniread.js",
"snyk-protect": "snyk protect",
"prepare": "yarn snyk-protect",
"depUpdate": "./devScripts/update.sh",
"postinstall": "opencollective-postinstall",
"prepublish": "npm run snyk-protect"
},
"bin": {
"uniread": "./bin/uniread.js"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.19.1",
"husky": "^3.0.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"nyc": "^12.0.2"
},
"husky": {
"hooks": {
"pre-commit": "eslint . ; yarn test"
}
},
"snyk": true,
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/uniread"
}
}