forked from AurelicButter/AniList-Node
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.27 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
{
"name": "anilist-node",
"version": "1.14.1",
"description": "A lightweight Node.js wrapper for the AniList API",
"main": "./lib/index.js",
"types": "./lib/types/index.d.ts",
"typesVersions": {
">=4.2": {
"*": [
"*"
]
}
},
"scripts": {
"test": "node tests/mediaTest.js",
"docs": "node utilities/clearDocs.js && jsdoc -u tutorials -c utilities/docConfig.json && prettier --write ./docs",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"lint-staged": {
"*.{html,css,js,json,jsx}": [
"prettier --write",
"eslint --fix --quiet"
]
},
"author": {
"name": "Frederick Katsura",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AurelicButter/Anilist-Node"
},
"bugs": {
"url": "https://github.com/AurelicButter/Anilist-Node/issues"
},
"license": "MIT",
"dependencies": {
"abort-controller": "^3.0.0",
"node-fetch": "^2.6.11"
},
"keywords": [
"anilist",
"api",
"anime",
"node.js"
],
"devDependencies": {
"docdash": "^2.0.2",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"jsdoc": "^4.0.2",
"lint-staged": "^13.2.2",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
}
}