-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.63 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@centoic/ipeds-fetch",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/centoic/ipeds-fetch.git"
},
"homepage": "https://github.com/centoic/ipeds-fetch#readme",
"bugs": {
"url": "https://github.com/centoic/ipeds-fetch/issues"
},
"keywords": [
"ipeds",
"nces",
"education",
"data",
"cli",
"download"
],
"engines": {
"node": ">=22.0.0"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"version": "0.3.0",
"description": "CLI tool and library for downloading IPEDS data files",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ipeds-fetch": "bin/ipeds-fetch.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"prepare": "tsc",
"prepublishOnly": "tsc && eslint . && tsc --noEmit",
"lint": "eslint .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@eslint/js": "9.39.5",
"@tsconfig/node22": "22.0.5",
"@types/node": "20.19.43",
"@types/unzipper": "0.10.11",
"eslint": "9.39.5",
"globals": "16.5.0",
"prettier": "2.8.8",
"typescript": "5.9.3",
"typescript-eslint": "8.61.1"
},
"dependencies": {
"playwright": "1.61.1",
"unzipper": "0.12.5",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"pnpm": {
"onlyBuiltDependencies": []
},
"packageManager": "pnpm@10.33.4"
}