This repository has been archived by the owner on Sep 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "gin-downloader",
"version": "2.0.0-beta.6",
"description": "Simple manga scrapper for famous online manga websites.",
"keywords": [
"manga",
"downloader",
"crawler",
"manga-downloader",
"gin-manga",
"manga-fox",
"mangafox",
"mangapanda",
"mangahere"
],
"main": "index.js",
"types": "index.d.ts",
"homepage": "https://github.com/pikax/gin-downloader#readme",
"scripts": {
"build": "yarn run build:ts",
"build:ts": "trash build && tsc --outDir build",
"oldlint": "tslint -c tslint.json --project tsconfig.json --force",
"lint": "tslint {src,test}/**/*.ts --format stylish",
"test": "jest",
"test:watch": "cross-env mock=1 jest --watch",
"test:Mock": "cross-env mock=1 jest",
"coverage": "jest --coverage",
"dist": "rollup -c",
"dist:build": "yarn build && yarn dist:rollup",
"dist:rollup": "rollup -c",
"dist:declaration": "copyfiles -u 1 ./build/**/*d.ts dist/types",
"clean": "trash src/**/*.js* src/**/*.d.ts test/**/*.js* test/**/*.d.ts __tests__/**/*.js* __tests__/**/*.d.ts",
"watch": "rollup --watch --config"
},
"repository": "https://github.com/pikax/gin-downloader",
"author": "pikax",
"license": "MIT",
"bugs": {
"url": "https://github.com/pikax/gin-downloader/issues"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/__tests__/*.(ts|tsx|js)",
"**/__tests__/**/*.spec.(ts|tsx|js)"
],
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"dist/"
]
},
"dependencies": {
"@types/cheerio": "^0.22.1",
"@types/debug": "^0.0.30",
"@types/lodash": "^4.14.107",
"@types/qs": "^6.5.1",
"@types/request": "^2.47.0",
"babel-polyfill": "^6.26.0",
"cheerio": "^1.0.0-rc.2",
"cloudscraper": "^1.5.0",
"co": "^4.6.0",
"debug": "^3.1.0",
"lodash": "^4.17.5",
"moment": "^2.22.1",
"no-case": "^2.3.2",
"promise-queue": "^2.2.5",
"qs": "^6.5.1",
"request": "^2.87.0",
"requestretry": "^1.13.0"
},
"devDependencies": {
"@types/fs-extra": "^5.0.2",
"@types/jest": "^22.2.3",
"@types/node": "^9.6.6",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0",
"fs-extra": "^5.0.0",
"jest": "^22.4.3",
"rollup": "^0.58.1",
"rollup-plugin-typescript2": "^0.13.0",
"ts-jest": "^22.4.4",
"ts-node": "^6.0.0",
"tsconfig-paths": "^3.3.1",
"tslint": "^5.9.1",
"typescript": "^2.8.3"
},
"optionalDependencies": {
"cross-env": "^5.1.4",
"sanitize-filename": "^1.6.1",
"sprintf-js": "^1.1.1"
}
}