-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.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
{
"name": "@MaillardCorentin/jira-connector",
"version": "1.0.0",
"description": "",
"main": "index.js",
"exports": {
".": {
"types": {
"default": "./index.d.ts"
},
"default": {
"default": "./index.js"
}
},
"./package.json": "./package.json"
},
"types": "index.d.ts",
"scripts": {
"test": "exit 0",
"eslint": "eslint \"./src/**\"",
"eslint:fix": "npm run eslint -- --fix",
"build": "tsc -p .",
"node": "node ./build/server/webhook.js",
"nodehttp": "node ./build/client/httprequest.js"
},
"keywords": [
"jira",
"webhook",
"oauth2",
"http",
"promise",
"node"
],
"author": "MaillardCorentin",
"license": "ISC",
"dependencies": {
"@types/node": "^18.16.1",
"express": "^4.18.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"axios": "^1.3.6",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^5.0.4"
}
}