-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 955 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 955 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
{
"name": "institution-mapping",
"version": "0.0.1",
"description": "A tool to help match aggregator institutions to ucp institutions",
"main": "index.ts",
"scripts": {
"copyEnv": "cp ./environment/.example.env ./environment/.env",
"prod": "npx tsc && node dist/index.js",
"test": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Universal-Connect-Project/institution-mapping.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Universal-Connect-Project/institution-mapping/issues"
},
"homepage": "https://github.com/Universal-Connect-Project/institution-mapping#readme",
"devDependencies": {
"@types/node": "^24.5.2",
"msw": "^2.11.3",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"dependencies": {
"@inquirer/prompts": "^7.8.6",
"commander": "^14.0.1",
"dotenv": "^17.2.2"
}
}