-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.67 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "tmdb-post",
"version": "1.0.0",
"description": "Module and CLI to post TV shows episodes to TMDb (themoviedb.org)",
"files": [
"lib/**/*"
],
"main": "./lib/module/index.js",
"bin": {
"tmdb": "./lib/cli/index.js"
},
"scripts": {
"lint": "tslint -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest --testPathIgnorePatterns manual.test",
"test:episodes": "jest show-episodes.manual.test",
"test:seasons": "jest show-seasons.manual.test",
"build": "tsc -p .",
"prepublishOnly": "npm test && npm run lint",
"prepare": "npm run build",
"preversion": "npm run lint"
},
"keywords": [
"tmdb",
"post",
"api",
"cli",
"module"
],
"author": "Léo Dupont <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/LeoDupont/tmdb-post.git"
},
"bugs": {
"url": "https://github.com/LeoDupont/tmdb-post/issues"
},
"homepage": "https://github.com/LeoDupont/tmdb-post#readme",
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.0.0",
"dotenv": "^8.2.0",
"figlet": "^1.5.0",
"inquirer": "^7.3.3",
"path": "^0.12.7",
"puppeteer": "^5.2.1",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/figlet": "^1.2.0",
"@types/inquirer": "^7.3.0",
"@types/jest": "^26.0.9",
"@types/node": "^14.0.27",
"@types/puppeteer": "^3.0.1",
"@types/yargs": "^15.0.5",
"jest": "^26.3.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7"
}
}