-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "@renderforest/service-auth",
"description": "Auth service to set authorization and authorize requests",
"version": "1.8.0",
"author": "RenderForest LLC",
"bugs": {
"url": "https://github.com/renderforest/service-auth/issues"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "5.0.0",
"jest": "27.1.1",
"pre-commit": "1.2.2"
},
"engines": {
"node": "18.17.0",
"npm": "9.6.7"
},
"homepage": "https://github.com/renderforest/service-auth#readme",
"keywords": [
"auth",
"authorize",
"service",
"set-authorization"
],
"main": "./src/index.js",
"pre-commit": [
"pre-commit"
],
"repository": {
"type": "git",
"url": "https://github.com/renderforest/service-auth"
},
"scripts": {
"lint": "./node_modules/.bin/eslint ./src ./test --fix",
"lint-no-fix": "./node_modules/.bin/eslint ./src ./test",
"pre-commit": "npm run lint-no-fix && npm run test",
"test": "jest --silent",
"test-coverage": "jest --coverage --silent",
"test-watch": "jest --watch --silent"
}
}