-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "epub-parser-simple",
"version": "0.1.9",
"author": "t.kosminov",
"description": "Simple epub parser",
"license": "MIT",
"private": false,
"main": "dist-src/index.js",
"types": "dist-src/index.d.ts",
"files": [
"dist-src",
"src"
],
"keywords": [
"epub",
"parser",
"simple"
],
"repository": {
"url": "https://github.com/tkosminov/epub-parser"
},
"scripts": {
"build": "rimraf dist-src && tsc -p tsconfig.build.json",
"test": "ts-node ./test/index.ts",
"lint": "eslint \"{src,apps,libs}/**/*.ts\"",
"lint-fix": "npm run lint -- --fix"
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/node": "^20.14.10",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.3"
},
"dependencies": {
"adm-zip": "^0.5.10",
"xml2js": "^0.6.2"
}
}