-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.48 KB
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
{
"name": "japdl",
"version": "1.0.0",
"description": "",
"main": "js/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Seysa/japdl"
},
"scripts": {
"start": "npm run tsc && node .",
"build": "npm run tsc && pkg .",
"test": "npm run tsc && mocha js/test/ --recursive --exit",
"otest": "npm run tsc && mocha js/test/fetch.js --exit",
"tsc": "tsc",
"download": "npm run tsc && node js/src/utils/chromiumDownloader.js",
"downloadtest": "npm run tsc && node js/src/utils/chromiumDownloader.js --testing",
"tester": "npm run tsc && node js/src/tester.js"
},
"pkg": {
"targets": [
"node16-win-x64",
"node16-linux-x64"
],
"outputPath": "build",
"assets": [
"node_modules/puppeteer-extra-plugin-stealth/**/*.*",
"js/commands/**/*.*"
],
"scripts": [
"js/**/*.js"
]
},
"bin": "js/index.js",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"japscandl": "^1.1.2"
},
"devDependencies": {
"@types/archiver": "^5.1.0",
"@types/chai": "^4.2.17",
"@types/mocha": "^8.2.2",
"@types/puppeteer": "^5.4.3",
"@types/puppeteer-core": "^5.4.0",
"@types/yargs": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4.3.4",
"eslint": "^7.24.0",
"image-size": "^1.0.0",
"mocha": "^8.3.2",
"pkg": "^5.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}