-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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
{
"name": "niconico-dl.js",
"version": "1.1.3",
"main": "dist/index.js",
"types": "dist/index.d.js",
"description": "This is library which can get download link of Niconico Video or download it.",
"license": "MIT",
"scripts": {
"example": "ts-node -r tsconfig-paths/register example/index.ts",
"build": "yarn clean && tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"test": "jest",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"prepare": "yarn build"
},
"author": "y-chan <[email protected]>",
"homepage": "https://github.com/y-chan/niconico-dl.js",
"repository": {
"type": "git",
"url": "git+https://github.com/y-chan/niconico-dl.js"
},
"files": [
"dist"
],
"dependencies": {
"@types/node": "^15.12.1",
"@types/node-fetch": "^2.5.11",
"node-fetch": "^2.6.1",
"node-html-parser": "^4.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"tsconfig-paths": "^3.10.1"
}
}