-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 984 Bytes
/
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
{
"name": "municipalities-gr",
"version": "1.0.0",
"description": "Scraper for Greek municipality election data",
"main": "dist/scripts/getElectionData.js",
"scripts": {
"build": "tsc",
"get-election-data": "npm run build && node dist/scripts/getElectionData.js",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"**/*.ts\""
},
"keywords": [
"greece",
"elections",
"municipalities",
"scraper"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/jsdom": "^21.1.7",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"prettier": "^2.5.1",
"typescript": "^5.6.3"
},
"dependencies": {
"axios": "^1.7.7",
"chartist": "^1.3.0",
"csv-parse": "^5.0.3",
"csv-stringify": "^6.5.1",
"d3": "^7.9.0",
"jsdom": "^25.0.1",
"svg-chartist": "^1.0.1"
}
}