-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "nodepub",
"version": "3.0.8",
"description": "Create valid EPUB (v2) ebooks with metadata, contents and cover image.",
"main": "src/index.js",
"scripts": {
"test": "mocha",
"lint": "npm run lint-src && npm run lint-example && npm run lint-test",
"lint-src": "eslint \"src/**/*.js\" --fix",
"lint-example": "eslint \"example/**/*.js\" --fix",
"lint-test": "eslint \"test/**/*.js\" --fix",
"example": "node --trace-uncaught example/example.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kcartlidge/nodepub"
},
"keywords": [
"epub",
"ebook"
],
"author": "K Cartlidge (https://kcartlidge.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kcartlidge/nodepub/issues"
},
"homepage": "https://github.com/kcartlidge/nodepub",
"dependencies": {
"archiver": "^5.2.0",
"moment": "^2.29.1"
},
"devDependencies": {
"chai": "4.3.x",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"mocha": "^9.2.1",
"sinon": "13.0.x"
}
}