-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 2.04 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
{
"name": "epub",
"version": "0.5.7",
"title": "ePub Creator",
"description": "ePub Creator is a WebExtension that creates ePub e-books from web pages and 'overdrive.com's online reader.",
"author": "Niklas Gollenstede",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/NiklasGollenstede/epub-creator"
},
"homepage": "https://github.com/NiklasGollenstede/epub-creator#readme",
"keywords": [ "book", "e-book", "ePub", "website", "article", "save", "offline", "one click", "overdrive.com", "reader mode" ],
"contributions": [ {
"what": { "name": "Readability.js", "url": "https://github.com/mozilla/readability" },
"who": [ "Mozilla", "Arc90" ],
"license": { "name": "MIT", "url": "https://www.apache.org/licenses/LICENSE-2.0" }
}, {
"what": { "name": "JSZip", "url": "https://github.com/Stuk/jszip" },
"who": [ "Stuart Knightley", "David Duponchel", "Franz Buchinger", "António Afonso" ],
"license": { "name": "MIT", "url": "/node_modules/jszip/LICENSE.markdown" }
}, {
"what": { "name": "Book Icon", "url": "https://fontawesome.io/icon/book/" },
"who": { "name": "Dave Gandy", "url": "https://twitter.com/davegandy" },
"license": { "name": "OFL-1.1", "url": "https://scripts.sil.org/OFL" }
} ],
"private": true,
"dependencies": {
"es6lib": "0.0.3",
"jszip": "github:Stuk/jszip#v3.1.5",
"multiport": "0.2.3",
"pbq": "0.5.0",
"readability": "github:mozilla/readability#290724c68c93359139a4663d18460f6d26e192e6",
"web-ext-build": "0.0.12",
"web-ext-utils": "0.1.13"
},
"devDependencies": {
"eslintrc": "github:NiklasGollenstede/eslintrc#5837452",
"ghooks": "^2.0.4"
},
"scripts": {
"postinstall": "npm start",
"start": "web-ext-build",
"lint": "eslintrc --ignore-path .gitignore .",
"sign": "web-ext-build {beta:$APPVEYOR_BUILD_NUMBER,sign:1}"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint --silent -- --color"
},
"web-ext-utils": {
"srcDir": "",
"viewName": "ePub"
}
},
"eslintConfig": {
"extends": "./node_modules/eslintrc/web-ext.js",
"root": true
}
}