-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
86 lines (86 loc) · 2.38 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"author": "William Orr <will@worrbase.com> (http://worrbase.com/)",
"name": "imdb-api",
"description": "Queries unofficial imdb APIs to get movie and television information from imdb",
"version": "4.4.1",
"main": "./lib/imdb.js",
"types": "./lib/imdb.d.ts",
"homepage": "https://gitlab.com/worr/node-imdb-api",
"repository": {
"type": "git",
"url": "https://gitlab.com/worr/node-imdb-api"
},
"license": "MIT",
"scripts": {
"build": "tsc -p .",
"prepare": "npm run build && tsc -p tsconfig-umd.json",
"format": "prettier --write --parser typescript src/*.ts test/*.ts",
"lint": "eslint --ignore-path .gitignore --ignore-pattern examples --ext .ts . && prettier --check --parser typescript src/*.ts test/*.ts",
"test": "nyc mocha",
"check": "npm run lint && npm run test",
"ci": "npm run check",
"docs": "typedoc --out ./doc --ignoreCompilerErrors src/imdb.ts",
"clean": "rm -rf node_modules lib"
},
"files": [
"lib/*",
"src/*",
"umd/*"
],
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"cors": "^2.8.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-semistandard": "^16.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"express": "^4.17.1",
"js-beautify": "^1.14.0",
"mocha": "^9.1.0",
"nock": "^13.1.3",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"source-map-support": "^0.5.19",
"ts-node": "^10.2.1",
"typedoc": "^1.0.0-dev.4",
"typescript": "^4.4.2"
},
"engines": {
"node": ">=12.0"
},
"keywords": [
"imdb",
"movies",
"search",
"tv",
"television"
],
"dependencies": {
"@ungap/url-search-params": "^0.2.2",
"ky": "^0.24.0",
"ky-universal": "^0.8.2"
},
"mocha": {
"require": [
"ts-node/register",
"source-map-support/register"
],
"extension": [
"ts"
]
}
}