forked from est-normalis/simple-apollo-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "@est-normalis/simple-apollo-logger",
"version": "0.4.1",
"description": "A simple logger for Apollo Server",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'",
"prettify": "prettier src/**/*.ts --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/est-normalis/simple-apollo-logger.git"
},
"keywords": [
"apollo",
"log",
"logging",
"graphql"
],
"author": "Est Normalis",
"license": "MIT",
"bugs": {
"url": "https://github.com/est-normalis/simple-apollo-logger/issues"
},
"homepage": "https://github.com/est-normalis/simple-apollo-logger#readme",
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.5",
"apollo-server-env": "^2.4.3",
"apollo-server-types": "^0.4.0",
"graphql": "^15.0.0",
"graphql-extensions": "^0.12.0",
"jest": "^25.2.1",
"prettier": "^2.0.5",
"ts-jest": "^25.5.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
}
}