-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "otakudesu-scraper",
"version": "1.2.0",
"description": "A module that retrieves data from otakudesu.vip. Now with TypeScript!",
"main": "./dist/index.js",
"typings": "./typings/index.d.ts",
"scripts": {
"clean": "rimraf dist && rimraf typings",
"build": "npm run clean && tsc --build tsconfig.json",
"test": "npm run build && node ./dist/test",
"lint": "eslint \"./src/**/*.ts\" --fix",
"docs": "typedoc"
},
"keywords": [
"otakudesu",
"otakudesu scrape",
"scrape otakudesu",
"anime"
],
"author": "hansputera",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.5",
"phin": "^3.6.1"
},
"homepage": "https://github.com/hansputera/otakudesu-scrape",
"devDependencies": {
"@types/node": "16.11.39",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.32.0",
"eslint": "8.17.0",
"eslint-config-google": "0.14.0",
"rimraf": "3.0.2",
"typedoc": "0.22.17",
"typescript": "4.8.4"
},
"engines": {
"node": ">=16.10.0"
},
"packageManager": "[email protected]"
}