-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.52 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.52 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
{
"name": "youtube-metadata-scraper",
"version": "0.0.2",
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"youtube-metadata-scraper": "./build/cli.js"
},
"scripts": {
"build": "rm -Rf ./build && tsc -b .",
"format": "prettier --write \"src/**/*.{ts,tsx}\" --parser typescript",
"lint": "eslint .",
"doc": "rm -Rf docs && typedoc src/index.ts",
"start": "node build/index.js",
"start:dev": "ts-node src/index.ts",
"cli": "node build/cli.js",
"cli:dev": "ts-node src/cli.ts",
"test": "jest",
"test:cov": "yarn run test"
},
"dependencies": {
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.5",
"commander": "^7.0.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"@types/cheerio": "0.22.23",
"@types/lodash": "4.14.168",
"@typescript-eslint/eslint-plugin": "4.14.2",
"@typescript-eslint/parser": "4.14.2",
"eslint": "7.19.0",
"eslint-config-prettier": "7.2.0",
"eslint-config-standard-with-typescript": "20.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "5.0.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"ts-jest": "26.5.0",
"ts-node": "9.1.1",
"typedoc": "0.20.20",
"typescript": "4.1.3"
}
}