-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "cofacts-opendata",
"version": "1.0.0",
"type": "module",
"description": "Open data for cofacts",
"main": "dumpOpenData.js",
"scripts": {
"prestart": "mkdir -p data",
"start": "node dumpOpenData",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cofacts/opendata.git"
},
"keywords": [
"open-data",
"fact-checking",
"crowd-sourcing"
],
"author": "",
"license": "SEE LICENSE IN README.md",
"bugs": {
"url": "https://github.com/cofacts/opendata/issues"
},
"homepage": "https://github.com/cofacts/opendata#readme",
"dependencies": {
"csv-stringify": "^6.4.0",
"@elastic/elasticsearch": "^6.8.6",
"jszip": "^3.1.5"
},
"devDependencies": {
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0"
},
"engines": {
"node": ">=18"
}
}