forked from kiwicom/js-iam-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.7 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
{
"private": false,
"version-disclaimer": "This repo is managed by semantic-release please check tags for current versions",
"version": "0.2.0",
"name": "@kiwicom/iam",
"repository": "kiwicom/js-iam-middleware",
"license": "MIT",
"bin": {
"generate-iap-token": "./dist/scripts/index.js"
},
"files": [
"dist",
"AuthorizationDirective.graphql"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "nyc ava",
"lint": "eslint . --ext ts",
"ci": "npm run test && npm run lint && tsc --noEmit",
"build": "rm -rf dist && tsc --declaration",
"prepare": "npm run build",
"release": "semantic-release"
},
"dependencies": {
"@types/express": "^4.17.2",
"express": "^4.17.1",
"graphql": "^14.4.2",
"graphql-tools": "^4.0.5",
"jsonwebtoken": "^8.5.1",
"mamushi": "^2.0.0",
"node-fetch": "^2.6.0",
"open": "^7.0.0"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/github": "7.0.5",
"@semantic-release/npm": "7.0.5",
"@types/graphql": "14.2.3",
"@types/jsonwebtoken": "8.3.7",
"@types/node-fetch": "2.5.5",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"ava": "2.4.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"nyc": "15.0.0",
"semantic-release": "17.0.4",
"ts-node": "8.6.2",
"typescript": "3.7.5"
},
"resolutions": {
"mem": "4.0.0"
},
"ava": {
"compileEnhancements": false,
"cache": true,
"concurrency": 5,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"src/**/*.test.ts"
]
}
}