-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 950 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
30
31
32
33
34
35
36
37
38
{
"name": "interestingclimatefactsapi",
"version": "1.0.0",
"description": "A free open source API that returns interesting climate facts",
"main": "index.js",
"type": "module",
"engines": {
"node": "18.x"
},
"scripts": {
"test": "jest",
"start": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zuzexx/InterestingClimateFactsAPI.git"
},
"author": "Zuzexx",
"license": "MIT",
"bugs": {
"url": "https://github.com/zuzexx/InterestingClimateFactsAPI/issues"
},
"homepage": "https://github.com/zuzexx/InterestingClimateFactsAPI#readme",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.4.3",
"supertest": "^6.3.3"
},
"dependencies": {
"axios": "^1.6.0",
"babel": "^6.23.0",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"express": "^4.19.2",
"nodemon": "^2.0.21"
}
}