-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.86 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
{
"name": "github_users_search_api",
"version": "1.0.0",
"description": "An API endpoint to search for GitHub users by specifying a programming language they use in their public repositories and a username string.",
"main": "app.js",
"scripts": {
"watch": "nodemon",
"build": "rm -rf dist && babel src -d dist",
"docker": "docker-compose up",
"docker:build": "docker-compose build",
"docker:app": "docker-compose up app",
"docker:stop": "docker-compose down",
"test": "NODE_ENV=test nyc mocha --exit --timeout 100000 --require @babel/register ./tests/*",
"start": "npm run build && node ./dist/app.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"dev": "babel-node -- ./src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/julietezekwe/github_users_search_api.git"
},
"keywords": [
"Github_api",
"user_serach",
"github_language_search"
],
"author": "Chidimma Juliet Ezekwe",
"license": "MIT",
"bugs": {
"url": "https://github.com/julietezekwe/github_users_search_api/issues"
},
"homepage": "https://github.com/julietezekwe/github_users_search_api#readme",
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.8.3",
"axios": "^0.21.1",
"babel-eslint": "^10.0.2",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"morgan": "^1.9.1",
"nodemon": "^1.19.1"
},
"devDependencies": {
"coveralls": "^3.0.9",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^7.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.0.0"
}
}