-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 845 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 845 Bytes
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
{
"name": "nsdi",
"version": "0.1.7",
"description": "nsdi 파일 다운로더",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"nsdi": "dist/bin.js"
},
"scripts": {
"prepare": "rimraf dist && tsc",
"start": "ts-node src/index.ts",
"bin.list": "ts-node src/bin.ts -l",
"bin.donwload": "ts-node src/bin.ts -t 연속지적도형정보 -s 2091219 -f shp",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"commander": "^4.0.1",
"domino": "^2.1.4",
"form-data": "^3.0.0",
"puppeteer": "^2.0.0"
},
"devDependencies": {
"@types/node": "^12.12.20",
"@types/puppeteer": "^2.0.0",
"rimraf": "^3.0.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
}
}