This repository has been archived by the owner on Oct 17, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
46
47
48
49
50
51
{
"name": "idn-area-data-extractor",
"version": "1.0.2",
"description": "Extract the Indonesia area data from raw sources into CSV.",
"type": "module",
"exports": "./src/index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node ./src/index.ts"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fityannugroho/idn-area-data-extractor.git"
},
"keywords": [
"idn-area",
"wilayah",
"indonesia",
"data",
"extractor"
],
"author": "fityannugroho <[email protected]> (https://github.com/fityannugroho)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fityannugroho/idn-area-data-extractor/issues"
},
"homepage": "https://github.com/fityannugroho/idn-area-data-extractor#readme",
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"ts-node": "^10.9.1",
"typescript": "~5.0.4"
},
"dependencies": {
"@inquirer/prompts": "^2.3.0",
"idn-area-data": "^2.1.1",
"jest-diff": "^29.6.1",
"ora": "^6.3.1",
"pdfjs-dist": "^3.8.162"
}
}