-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "csfd-api",
"version": "1.2.1",
"description": "DEPRECATED Api for csfd.cz",
"keywords": [
"csfd",
"movies",
"api"
],
"scripts": {
"test": "node_modules/.bin/_mocha -R spec --timeout 5000 --recursive test",
"cover": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -R spec --timeout 5000 --recursive test",
"report": "node_modules/.bin/istanbul report text",
"cover-report": "npm run cover; npm run report",
"coveralls": "node_modules/.bin/coveralls < coverage/lcov.info && rm -rf ./coverage"
},
"author": {
"name": "Patrik Valkovic",
"email": "[email protected]"
},
"homepage": "https://github.com/PatrikValkovic/csfd-api",
"repository": {
"type": "git",
"url": "https://github.com/PatrikValkovic/csfd-api"
},
"dependencies": {
"cheerio": "^1.0.0-rc.5",
"got": "^11.8.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-subset": "^1.6.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^8.3.0",
"mocha-lcov-reporter": "^1.3.0",
"should": "^13.2.3"
},
"readmeFilename": "README.md",
"main": "lib/csfd.js",
"files": [
"lib"
],
"license": "MIT"
}