forked from matrix-org/matrix-appservice-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.29 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
{
"name": "matrix-appservice",
"version": "2.0.0",
"description": "Matrix Application Service Framework",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=18"
},
"directories": {
"test": "tests"
},
"scripts": {
"gendoc": "typedoc",
"test": "mocha -r ts-node/register test/*.ts",
"lint": "eslint -c .eslintrc --max-warnings 0 src/**/*.ts",
"build": "tsc --project tsconfig.json",
"prepare": "npm run build"
},
"repository": {
"url": "https://github.com/matrix-org/matrix-appservice-node"
},
"keywords": [
"matrix-org"
],
"author": "matrix.org",
"license": "Apache-2.0",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.18.1",
"js-yaml": "^4.1.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@tsconfig/node18": "^2.0.0",
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.2.22",
"@types/express": "^4.17.14",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^9.0.0",
"@types/morgan": "^1.9.3",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chai": "^4.3.4",
"eslint": "^8.3.0",
"mocha": "^9.1.3",
"ts-node": "^10.9.1",
"typedoc": "^0.24.4",
"typescript": "^5.0.4"
}
}