-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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": "subtitles-downloader",
"version": "1.5.2",
"repository": "git://github.com/axelhzf/subtitles-downloader.git",
"dependencies": {
"chalk": "^2.4.2",
"debug": "^4.1.1",
"glob": "^7.1.3",
"lodash": "^4.17.11",
"meow": "^5.0.0",
"opensubtitles-api": "^5.0.1",
"p-limit": "^2.2.0",
"request": "~2.88.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.26",
"@types/debug": "^4.1.2",
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.122",
"@types/meow": "^5.0.0",
"@types/node": "^11.11.0",
"@types/request": "^2.48.1",
"jest": "^24.3.1",
"jest-haste-map": "^24.3.1",
"jest-resolve": "^24.3.1",
"np": "^4.0.2",
"prettier": "^1.16.4",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333"
},
"license": "MIT",
"main": "dist/index.js",
"bin": {
"subtitles-downloader": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch --notify",
"build": "rm -rf dist && tsc"
}
}