-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.27 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
{
"name": "kth-node-api-key-strategy",
"version": "2.0.3",
"description": "A api key strategy for Node API projects.",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "mocha tests/** --exit",
"build": "./build.sh",
"prepare": "bash -c 'if [ -f ./node_modules/.bin/husky ]; then husky install; fi'"
},
"peerDependencies": {
"passport": "^0.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/KTH/kth-node-api-key-strategy.git"
},
"bugs": {
"url": "https://github.com/KTH/kth-node-api-key-strategy/issues"
},
"homepage": "https://github.com/KTH/kth-node-api-key-strategy#readme",
"keywords": [
"api",
"key",
"strategy"
],
"author": {
"name": "KTH",
"email": "[email protected]",
"url": "https://github.com/KTH"
},
"license": "MIT",
"devDependencies": {
"@kth/eslint-config-kth": "^3.0.7",
"chai": "^4.3.10",
"eslint": "^8.12.0",
"husky": "^7.0.2",
"mocha": "^10.2.0",
"nock": "^13.4.0",
"node-mocks-http": "^1.13.0",
"passport": "^0.7.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}