-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.36 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
{
"name": "@l2studio/nhentai-api",
"version": "0.2.8",
"description": "A library for nhentai.net http web api",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/l2studio/nhentai-api.git",
"author": "lgou2w <lgou2w@hotmail.com>",
"license": "Apache-2.0",
"engines": {
"node": ">=10.0"
},
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && tsc",
"test": "cross-env DEBUG='lgou2w:*' ts-node -T -P tsconfig.json test/index.ts",
"lint": "eslint --ext .js,.ts,.tsx --ignore-path .gitignore .",
"prepublishOnly": "npm run lint && npm run build"
},
"files": [
"lib"
],
"keywords": [
"l2studio",
"lgou2w",
"nhentai-api",
"nhentai-client",
"nhentai",
"hentai",
"hentai-book",
"r18",
"r18-book"
],
"devDependencies": {
"@types/node": "^14.17.4",
"@types/tunnel": "^0.0.3",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"cross-env": "^7.0.3",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.3.5"
},
"dependencies": {
"debug": "^4.3.2",
"got": "^11.8.2",
"tunnel": "^0.0.6"
}
}