-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "manga-get",
"description": "A JavaScript library to access manga sites programmatically.",
"version": "0.3.1",
"license": "MIT",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"engines": {
"node": ">=12.0.0"
},
"homepage": "https://github.com/rockacola/manga-get#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rockacola/manga-get.git"
},
"bugs": {
"url": "https://github.com/rockacola/manga-get/issues"
},
"scripts": {
"ts": "ts-node $1",
"clean": "rm -rf ./dist",
"build": "npm run clean && tsc",
"format": "prettier --write './{examples,lib,test}/**/*.ts'",
"test": "npx jest"
},
"scripts-info": {
"ts": "Execute a TypeScript file of a specified file path.",
"clean": "Clear out build directory.",
"build": "Regenerate library's build directory.",
"format": "Code formatting alignment and clenaups.",
"test": "Perform basic smoke tests."
},
"dependencies": {
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.6",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}