-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.55 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "github-org-microservice",
"version": "1.0.0",
"description": "Sample microservice to fetch, cache, and serve information about GitHub organizations and their public repos.",
"main": "build/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "tsc -b .",
"ci": "npm run lint && npm run build && npm run test",
"lint": "eslint -c .eslint.js './src/**/*.ts'",
"start": "npm run build && node build/src/index.js",
"test": "jest --config=.jest.config.js --colors --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpaceKatt/github-org-microservice.git"
},
"keywords": [
"github",
"org",
"cache"
],
"author": "Thomas Kercheval",
"license": "MIT",
"bugs": {
"url": "https://github.com/SpaceKatt/github-org-microservice/issues"
},
"homepage": "https://github.com/SpaceKatt/github-org-microservice#readme",
"devDependencies": {
"@types/jest": "26.0.24",
"@types/node": "16.3.3",
"@typescript-eslint/eslint-plugin": "4.28.4",
"@typescript-eslint/parser": "4.28.4",
"eslint": "7.31.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-prettier": "3.4.0",
"gts": "3.1.0",
"jest": "27.0.6",
"ts-jest": "27.0.3",
"ts-node": "10.1.0",
"typescript": "4.3.5"
},
"dependencies": {
"axios": "0.21.1",
"fastify": "3.19.1"
}
}