-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1017 Bytes
/
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
{
"name": "homerunner-client",
"version": "1.1.0",
"description": "A JS library for interfacing with Complement's homerunner application.",
"main": "lib/index.js",
"author": "Half-Shot <[email protected]>",
"license": "Apache-2.0",
"types": "lib/index.d.ts",
"engines": {
"node": ">=20.0.0"
},
"private": false,
"scripts": {
"build": "tsc",
"test": "jest tests/*",
"lint": "eslint ./src ./tests"
},
"devDependencies": {
"@babel/core": "*",
"@tsconfig/node20": "^20.1.2",
"@types/jest": "^28.1.3",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "27.6.0",
"eslint-plugin-matrix-org": "^1.2.1",
"eslint-plugin-unicorn": "50.0.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}