-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "reconcile",
"description": "Enrich your data, adding new columns based on lookups to online services.",
"version": "3.3.0",
"author": "Max Harlow <[email protected]> (https://maxharlow.com/)",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/maxharlow/reconcile.git"
},
"dependencies": {
"axios": "1.7.x",
"axios-rate-limit": "1.4.x",
"axios-retry": "4.5.x",
"chalk": "5.3.x",
"cheerio": "1.0.x",
"form-data": "4.0.x",
"fs-extra": "11.2.x",
"html-entities": "2.5.x",
"luxon": "3.5.x",
"papaparse": "5.3.x",
"puppeteer": "23.10.x",
"scramjet": "4.37.x",
"simple-wcswidth": "1.0.x",
"yaml": "2.6.x",
"yargs": "17.7.x"
},
"devDependencies": {
"ava": "6.2.x"
},
"bin": {
"reconcile": "bin.js"
},
"scripts": {
"test": "ava",
"postinstall": "reconcile completion > /usr/local/share/zsh/site-functions/_reconcile || true",
"postuninstall": "rm -f /usr/local/share/zsh/site-functions/_reconcile"
}
}