This repository was archived by the owner on Mar 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.17 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.17 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "quick-epub",
"version": "2.0.5",
"description": "A promise based generator of EPUB 3.0 books.",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist --copy-files --delete-dir-on-start && rimraf dist/**/*.test.js",
"cm": "git-cz",
"test": "cross-env NODE_ENV=test mocha --ui bdd --reporter spec --colors --require @babel/register src --recursive",
"test:watch": "yarn test --watch",
"test:coverage": "nyc yarn test",
"test:coveralls": "coveralls < ./coverage/lcov.info",
"lint": "esw --color src",
"lint:watch": "yarn lint --watch",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"files": [
"dist/",
"README.md",
"LICENSE.md"
],
"keywords": [
"quick-epub",
"promise",
"epub",
"epub3",
"epub-generator",
"generator",
"books",
"book"
],
"author": {
"name": "George Rawlinson",
"email": "george@rawlinson.net.nz"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/grawlinson/quick-epub/issues",
"email": "george@rawlinson.net.nz"
},
"repository": {
"type": "git",
"url": "github:grawlinson/quick-epub"
},
"dependencies": {
"archiver": "3.0.0",
"fs-extra": "7.0.1",
"joi": "14.3.1",
"p-map": "2.0.0",
"pug": "2.0.3",
"uslug": "1.0.4",
"uuid": "3.3.2",
"snyk": "^1.316.1"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.3.3",
"@babel/preset-env": "7.3.1",
"@babel/register": "7.0.0",
"@commitlint/cli": "7.5.2",
"@commitlint/config-conventional": "7.5.0",
"babel-plugin-add-module-exports": "1.0.0",
"babel-plugin-istanbul": "5.1.0",
"chai": "4.2.0",
"chai-files": "1.4.0",
"commitizen": "3.0.5",
"coveralls": "3.0.2",
"cross-env": "5.2.0",
"cz-conventional-changelog": "2.1.0",
"eslint": "5.14.0",
"eslint-config-prettier": "4.0.0",
"eslint-plugin-prettier": "3.0.1",
"eslint-watch": "4.0.2",
"husky": "1.3.1",
"lint-staged": "8.1.4",
"mocha": "5.2.0",
"nyc": "13.3.0",
"prettier": "1.16.4",
"rimraf": "2.6.3"
},
"engines": {
"node": ">= 8"
},
"snyk": true
}