-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.65 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
{
"name": "nhentai",
"version": "3.0.0",
"description": "A library for interacting with the nhentai API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha -t 20000 --retries 1 -r ts-node/register tests/*.test.ts",
"lint": "eslint -c .eslintrc --ext .ts --fix src",
"build": "rm -rf dist/** && tsc",
"docs": "typedoc --out docs --exclude src/index.ts src",
"changelog": "npx conventional-changelog -p angular",
"prepare": "husky install",
"prettier": "prettier --write \"{src,tests}/*.ts\" \"package.json\"",
"coverage": "npx nyc npm run test"
},
"keywords": [
"nhentai",
"hentai",
"api",
"wrapper",
"r18"
],
"author": {
"name": "DiamondMiner88",
"url": "https://github.com/DiamondMiner88/"
},
"license": "MIT",
"dependencies": {
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"conventional-changelog-cli": "^2.2.2",
"eledoc": "^0.2.1",
"eslint": "^8.6.0",
"husky": "^7.0.4",
"istanbul-badges-readme": "^1.8.1",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DiamondMiner88/nhentai.git"
},
"bugs": {
"url": "https://github.com/DiamondMiner88/nhentai/issues"
},
"homepage": "https://diamondminer88.github.io/nhentai/index.html",
"files": [
"dist/**/*"
]
}