-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 815 Bytes
/
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
{
"name": "hw6-part-b-fall-22",
"version": "1.0.0",
"description": "A series of functions to filter courses by various conditions.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"start": "node ./src/main.js",
"prettier:fix": "npx prettier --write ./src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umass-compsci-220/hw6-part-b-f22.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/umass-compsci-220/hw6-part-b-f22/issues"
},
"homepage": "https://github.com/umass-compsci-220/hw6-part-b-f22#readme",
"devDependencies": {
"jest": "^29.2.2",
"prettier": "^2.7.1"
},
"dependencies": {
"node-fetch": "^3.2.10"
}
}