-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
127 lines (127 loc) · 3.63 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "jira-matrix-bot",
"version": "0.7.0",
"main": "src/app.ts",
"license": "WTFPL",
"engines": {
"node": ">=13"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"compile:test": "rimraf dist && npm run build && rimraf dist",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"dev:debug": "nodemon --inspect logs/start.js",
"lint": "eslint \"{src,test}/**/*.ts\"",
"prestart": "rimraf dist && npm run build",
"start": "cross-env NODE_ENV=production node dist/app.js",
"start-dev": "ts-node src/app.ts",
"debug": "nodemon --inspect src/app.js",
"test-single": "NODE_ENV=test nyc mocha --watch $1",
"test": "cross-env NODE_ENV=test nyc mocha",
"test-all": "cross-env TEST_WATCH=1 npm run test",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git@github.com:grigori-gru/jira-to-matrix.git"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"src/types",
"src/messengers/matrix-api.ts",
"test",
"**/*.d.ts"
],
"all": true
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.11",
"@types/express": "^4.17.6",
"@types/faker": "^4.1.12",
"@types/fs-extra": "^9.0.1",
"@types/html-to-text": "^5.1.0",
"@types/joi": "^14.3.4",
"@types/js-yaml": "^3.12.5",
"@types/lodash": "^4.14.152",
"@types/luxon": "^1.24.0",
"@types/marked": "^0.7.4",
"@types/minimist": "^1.2.0",
"@types/mocha": "^7.0.2",
"@types/nock": "^11.1.0",
"@types/node": "^14.0.4",
"@types/node-polyglot": "^0.4.34",
"@types/proxyquire": "^1.3.28",
"@types/ramda": "^0.27.5",
"@types/redis": "^2.8.21",
"@types/request-promise-native": "^1.0.17",
"@types/sinon": "^9.0.3",
"@types/sinon-chai": "^3.2.4",
"@types/supertest": "^2.0.9",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"chai": "^4.2.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.0",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-prettier": "^3.1.2",
"faker": "latest",
"fs-extra": "^9.0.0",
"lodash": "^4.17.19",
"mocha": "latest",
"nock": "^11.4.0",
"node-git-server": "^0.6.1",
"nodemon": "^2.0.2",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"sinon": "^9.0.1",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.19",
"supertest": "^4.0.2",
"ts-node": "^8.10.1",
"typescript": "^3.9.2"
},
"dependencies": {
"@gitbeaker/node": "^21.7.0",
"@slack/web-api": "^5.2.1",
"@taoqf/javascript-state-machine": "^3.1.4",
"axios": "^0.19.2",
"axios-cache-adapter": "^2.5.0",
"body-parser": "^1.19.0",
"canvas": "^2.6.1",
"cross-env": "^7.0.2",
"david": "^12.0.0",
"delay": "^4.3.0",
"express": "^4.17.1",
"html-to-text": "^5.1.1",
"is-image": "^3.0.0",
"javascript-state-machine": "^3.1.0",
"joi": "^14.3.1",
"js-yaml": "^3.14.0",
"luxon": "^1.23.0",
"marked": "^0.8.0",
"matrix-js-sdk": "mobitel-ltd/matrix-js-sdk",
"minimist": "^1.2.5",
"node-polyglot": "^2.4.0",
"proxyquire": "^2.1.3",
"ramda": "^0.27.0",
"redis": "^3.0.2",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"rimraf": "^3.0.2",
"ru-names": "^1.0.7",
"simple-git": "^2.5.0",
"tmp-promise": "^2.0.2",
"winston": "^2.4.4"
}
}