-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.91 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
{
"name": "atlassian-connect-auth",
"version": "4.1.0",
"description": "Helper for handling webhooks from Atlassian products",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && tsc",
"test": "jest",
"lint": "eslint .",
"prepublish": "npm run build && npm run lint && npm run test"
},
"engines": {
"node": ">=14"
},
"keywords": [
"atlassian",
"atlassian-jira",
"atlassian-confluence",
"atlassian-bitbucket",
"atlassian-connect",
"atlassian-connect-addon"
],
"repository": {
"type": "git",
"url": "git+https://github.com/DanielHreben/atlassian-connect-auth.git"
},
"author": {
"name": "Daniel Hreben",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/DanielHreben/atlassian-connect-auth/issues"
},
"homepage": "https://github.com/DanielHreben/atlassian-connect-auth#readme",
"dependencies": {
"atlassian-jwt": "^2.0.2"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "^29.2.4",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.10",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"axios": "^1.2.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"express": "^4.18.2",
"got": "^11.8.2",
"jest": "^29.3.1",
"jest-matcher-specific-error": "^1.0.0",
"lodash": "^4.17.21",
"nock": "^13.2.9",
"node-fetch": "^2.6.7",
"prettier": "^2.8.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
}
}