forked from VueTubeApp/VueTube-Extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.47 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
{
"name": "vuetube-extractor",
"version": "0.1.0",
"description": "Core API wrapper for VueTube",
"main": "dict/index.js",
"types": "dist/index.d.ts",
"author": "404-Program-not-found (Alex)",
"license": "GPL-3.0",
"private": true,
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^18.11.18",
"@types/user-agents": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.50.0",
"copyfiles": "^2.4.1",
"eslint": "^8.33.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^28.1.0",
"jest-junit": "^15.0.0",
"ts-jest": "^28.0.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
},
"scripts": {
"test": "jest",
"ci": "jest --ci --reporters=default --reporters=jest-junit",
"test-build": "npm run build && npm run test",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"build": "npm run clean && tsc -p tsconfig.json && npm run copy-files",
"clean": "rm -rf dist build",
"copy-files": "copyfiles --error --up 1 src/youtube/proto/youtube.proto dist"
},
"dependencies": {
"@vuetubeapp/http": "^1.4.2",
"protobufjs": "^7.2.1",
"user-agents": "^1.0.1283"
}
}