-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.03 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3.03 KB
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
{
"name": "scripts",
"version": "1.0.0",
"private": true,
"description": "Common scripts for managing cinema data",
"main": "index.js",
"bin": {
"scripts": "index.js"
},
"exports": {
".": "./index.js",
"./common/utils": "./common/utils.js",
"./common/geo-utils": "./common/geo-utils.js",
"./common/cache": "./common/cache.js",
"./common/source-utils": "./common/source-utils.js",
"./common/distance-in-km-between-coordinates": "./common/distance-in-km-between-coordinates.js",
"./common/normalize-venue-name": "./common/normalize-venue-name.js",
"./cinemas": "./cinemas/index.js",
"./sources": "./sources/index.js"
},
"scripts": {
"test": "TZ=Europe/London jest",
"lint": "eslint .",
"format": "prettier \"./**/*.(m)?js(on)?\" --write --write && prettier \"./**/*.md\" --write --prose-wrap=always",
"retrieve": "TZ=Europe/London node index.js retrieve",
"transform": "TZ=Europe/London node index.js transform",
"combine": "TZ=Europe/London node index.js combine",
"match": "TZ=Europe/London node index.js match",
"cache": "TZ=Europe/London node index.js cache",
"clear:cache": "rm -rf ./cache && rm -rf ./cache-llm",
"clear:retrieved-data": "rm -rf ./retrieved-data",
"clear:transformed-data": "rm -rf ./transformed-data",
"clear:combined-data": "rm -rf ./combined-data",
"clear:matched-data": "rm -rf ./matched-data",
"clear:all": "npm run clear:cache && npm run clear:retrieved-data && npm run clear:transformed-data && npm run clear:combined-data && npm run clear:matched-data",
"helper:update-test-titles": "npm run clear:transformed-data && ./helpers/get-latest-transformed-data.sh && node common/tests/utils/update-test-titles.js"
},
"author": "Alistair Brown <github@alistairjcbrown.com>",
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.24.0",
"@octokit/core": "^6.1.4",
"@placemarkio/tokml": "^0.3.7",
"@sindresorhus/slugify": "^2.2.1",
"@turf/boolean-point-in-polygon": "^7.2.0",
"@turf/helpers": "^7.2.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"cheerio": "^1.0.0-rc.12",
"compromise": "^14.14.4",
"data-analysed": "github:clusterflick/data-analysed",
"date-fns": "^3.6.0",
"diacritics": "^1.3.0",
"dotenv": "^16.4.5",
"fast-diff": "^1.3.0",
"html-entities": "^2.5.2",
"iconv-lite": "^0.7.0",
"json-stable-stringify": "^1.2.1",
"moviedb-promise": "^4.0.7",
"playwright": "^1.49.0",
"playwright-extra": "^4.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"slugify": "^1.6.6"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@pollyjs/adapter-fetch": "^6.0.6",
"@pollyjs/adapter-node-http": "^6.0.6",
"@pollyjs/core": "^6.0.6",
"@pollyjs/persister-fs": "^6.0.6",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"setup-polly-jest": "^0.11.0"
}
}