-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.47 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": "opendata",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build-csv": "node src/build-csv.js && npm run build-csv:nkf",
"build-csv:nkf": "type nkf && find data -type f -name \"*.csv\" -exec nkf -w --overwrite {} \\;",
"build-location-data": "node src/build-location-data.js",
"build-standard-data": "node src/build-standard-data.js",
"build-readme": "npm run build-config-json && node src/build-readme.js",
"build-api": "node src/build-api.js",
"build-data-updates": "node src/build-data-updates.js",
"build-config-json": "node src/build-config-json.js",
"convert-location-data": "node src/convert-location-data.js",
"convert-standard-data": "node src/convert-standard-data.js",
"csvdiff": "./src/csvdiff.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/takamatsu-city/opendata.git"
},
"author": "",
"license": "CC-BY-4.0",
"bugs": {
"url": "https://github.com/takamatsu-city/opendata/issues"
},
"homepage": "https://github.com/takamatsu-city/opendata#readme",
"dependencies": {
"child_process": "^1.0.2",
"csv-parse": "^5.3.5",
"csv-stringify": "^6.3.0",
"csv2geojson": "^5.1.2",
"glob": "^8.1.0",
"js-yaml": "^4.1.0",
"klaw": "^4.1.0",
"papaparse": "^5.4.1",
"read-excel-file": "^5.6.1",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.0/xlsx-0.20.0.tgz"
},
"devDependencies": {
"jest": "^29.6.4"
}
}