-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "tu-subtitulo-script",
"version": "2.0.2",
"description": "Script para generar archivos .srt de la página oficial https://tusubtitulo.com.",
"main": "./dist/cli.js",
"types": "./dist/cli.d.ts",
"bin": {
"tu-subtitulo": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/osnoser1/tusubtitulo-script.git"
},
"scripts": {
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run build",
"start": "npm run build && node dist/cli.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Alfonso Andrés López Molina <osnoser_12@hotmail.com>",
"license": "MIT",
"preferGlobal": true,
"dependencies": {
"find-up": "^2.1.0",
"form-data": "^2.3.1",
"moment": "^2.19.1",
"request": "^2.83.0",
"yargs": "^10.0.3"
},
"devDependencies": {
"@types/moment": "^2.13.0",
"@types/node": "^8.0.51",
"@types/request": "^2.0.8",
"@types/yargs": "^8.0.2",
"rimraf": "^2.6.2",
"typescript": "~2.6.1"
}
}