forked from hydra-newmedia/passport-headerapikey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.19 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
{
"name": "@neuralegion/passport-headerapikey",
"description": "Api key authentication strategy for Passport, which only handles headers (not body fields).",
"keywords": [
"apikey",
"passport",
"strategy"
],
"private": false,
"author": {
"name": "Artem Derevnjuk",
"email": "[email protected]"
},
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/NeuraLegion/passport-headerapikey.git"
},
"bugs": {
"url": "https://github.com/NeuraLegion/passport-headerapikey/issues"
},
"homepage": "https://github.com/NeuraLegion/passport-headerapikey#readme",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"main": "lib/index",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"semantic-release": "semantic-release",
"prepublishOnly": "tsc",
"lint": "eslint -c .eslintrc 'src/**/*.ts'",
"pretest": "rm -rf testDist/ && tsc -p test/tsconfig.spec.json",
"test": "mocha testDist/* -R nyan --recursive"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"dependencies": {
"passport-strategy": "^1.0.0"
},
"devDependencies": {
"prettier": "^2.0.5",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/chai": "^4.2.11",
"@types/express": "^4.17.6",
"@types/mocha": "^7.0.2",
"@types/passport-strategy": "^0.2.35",
"@types/sinon": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prefer-arrow": "^1.2.0",
"express": "^4.17.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.0",
"mocha": "^7.1.2",
"semantic-release": "^19.0.3",
"sinon": "^9.0.2",
"typescript": "^3.8.3"
}
}