-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 2.24 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@theoperatore/destiny-auth-proxy",
"version": "0.4.0",
"description": "A simple refresh token server for handling Destiny OAuth tokens",
"main": "src/server.js",
"bin": "src/cli.js",
"repository": "https://github.com/theoperatore/destiny-auth-proxy.git",
"author": "Alex Petersen <theoperatore@gmail.com>",
"keywords": [
"auth",
"oauth2",
"destiny",
"destiny2",
"destinythegame",
"destiny2api",
"bungie",
"bungie-api",
"bungie-destiny-api",
"bungie-net"
],
"license": "MIT",
"engines": {
"node": ">=10.14.2"
},
"scripts": {
"postinstall": "yarn audit",
"lint": "eslint .",
"test": "jest"
},
"dependencies": {
"body-parser": "^1.18.3",
"commander": "^2.19.0",
"compression": "^1.7.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"helmet": "^3.15.0",
"morgan": "^1.9.1",
"request": "^2.88.0",
"split": "^1.0.1",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.5.1"
},
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-google": "^0.11.0",
"eslint-plugin-jest": "^22.1.2",
"husky": "^1.3.0",
"jest": "^23.6.0",
"nock": "^10.0.4",
"prettier": "^1.15.3",
"pretty-quick": "^1.8.0",
"supertest": "^3.3.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 120,
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"eslintConfig": {
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 8
},
"plugins": [
"jest"
],
"extends": [
"plugin:jest/recommended",
"eslint:recommended",
"google"
],
"rules": {
"indent": [
"error",
2
],
"arrow-parens": [
2,
"as-needed"
],
"require-jsdoc": "off",
"new-cap": "off",
"guard-for-in": "off",
"object-curly-spacing": [
"error",
"always"
],
"max-len": [
"error",
{
"code": 120
}
],
"quote-props": [
"error",
"as-needed"
]
}
}
}