-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 837 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
{
"name": "us-city-population-api",
"version": "1.0.0",
"type": "module",
"description": "Rest API that returns the population for a given city in the U.S",
"main": "index.js",
"scripts": {
"test": "mocha --exit ./tests/**/*.js",
"start": "node ./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VEDA95/US-city-population-api.git"
},
"author": "Stefan Netterfield",
"license": "ISC",
"bugs": {
"url": "https://github.com/VEDA95/US-city-population-api/issues"
},
"homepage": "https://github.com/VEDA95/US-city-population-api#readme",
"devDependencies": {
"chai": "^4.3.10",
"chai-http": "^4.4.0",
"mocha": "^10.2.0"
},
"dependencies": {
"ajv": "^8.12.0",
"dotenv": "^16.3.1",
"find-my-way": "^7.7.0",
"node-cache": "^5.1.2"
}
}