-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 KB
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": "4.0.1",
"description": "Matrix Application Service Framework",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=24"
},
"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.20.4",
"express": "^4.22.1",
"js-yaml": "^4.1.1",
"morgan": "^1.10.1"
},
"devDependencies": {
"@tsconfig/node24": "^24",
"@types/body-parser": "^1.19.6",
"@types/chai": "^4.2.22",
"@types/express": "^4.17.25",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.0",
"@types/morgan": "^1.9.10",
"@types/node": "^24",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"chai": "^4.3.4",
"eslint": "^8.57.0",
"mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typedoc": "^0.28.9",
"typescript": "^5.9.3"
}
}