-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 3.02 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "flibusta",
"version": "0.5.1",
"author": "ynhhoJ",
"description": "Unofficial Flibusta API based on website search engine. If you like to read books - buy",
"license": "MIT",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:ynhhoJ/flibusta-api.git"
},
"scripts": {
"example-search-authors": "ts-node ./examples/searchAuthors.ts",
"example-search-books-authors-opds": "ts-node ./examples/getBooksByAuthorOpds.ts",
"example-search-books-author-opds-paginated": "ts-node ./examples/getBooksByAuthorOpdsPaginated.ts",
"example-search-cover-by-book-id": "ts-node ./examples/getCoverByBookId.ts",
"example-search-authors-paginated": "ts-node ./examples/searchAuthorsPaginated.ts",
"example-search-book-by-name": "ts-node ./examples/searchBooksByName.ts",
"example-search-book-by-name-opds": "ts-node ./examples/searchBooksByNameFromOpds.ts",
"example-search-book-by-name-opds-paginated": "ts-node ./examples/searchBooksByNameFromOpdsPaginated.ts",
"example-search-book-by-name-paginated": "ts-node ./examples/searchBooksByNamePaginated.ts",
"example-search-book-by-series": "ts-node ./examples/searchBooksBySeries.ts",
"example-search-book-by-series-paginated": "ts-node ./examples/searchBooksBySeriesPaginated.ts",
"example-search-genres": "ts-node ./examples/searchGenres.ts",
"example-search-genres-paginated": "ts-node ./examples/searchGenresPaginated.ts",
"test": "npm run test:specific 'tests/**/*.ts'",
"test:specific": "npx nyc mocha --timeout 15000 --node-flags '--unhandled-rejections=strict' -r ts-node/register",
"build": "webpack && npm run copy-types",
"copy-types": "copyfiles -u 1 types/**/* build/types"
},
"dependencies": {
"axios": "1.2.6",
"fast-xml-parser": "4.0.15",
"lodash": "^4.17.21",
"node-html-parser": "6.1.4"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "4.3.4",
"@types/lodash": "4.14.191",
"@types/mocha": "10.0.1",
"@types/node": "18.11.18",
"@types/webpack-node-externals": "^2.5.3",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"chai": "4.3.7",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-sonarjs": "0.18.0",
"eslint-plugin-unicorn": "45.0.2",
"mocha": "10.2.0",
"nyc": "^15.1.0",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"tscpaths": "^0.0.9",
"typescript": "4.9.4",
"typescript-transform-paths": "3.4.6",
"webpack": "5.75.0",
"webpack-cli": "5.0.1",
"webpack-node-externals": "^3.0.0"
},
"keywords": [
"book",
"flibusta",
"api",
"unofficial",
"search"
]
}