This repository has been archived by the owner on Jul 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.48 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
{
"name": "unics_social_discord_bot",
"version": "0.0.1",
"description": "Bot for the UniCS KB Discord server",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"test": "jest --coverage",
"start": "ts-node src/app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unicsmcr/unics_social_discord_bot.git"
},
"keywords": [
"discord",
"bot",
"unics",
"kb"
],
"author": "UniCS",
"license": "MIT",
"bugs": {
"url": "https://github.com/unicsmcr/unics_social_discord_bot/issues"
},
"homepage": "https://github.com/unicsmcr/unics_social_discord_bot#readme",
"eslintConfig": {
"extends": "@unicsmcr",
"parserOptions": {
"project": "tsconfig.eslint.json"
},
"env": {
"jest": true
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/src/**/*.test.ts"
],
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.jest.json"
}
},
"collectCoverageFrom": [
"src/**/*.ts",
"!src/__tests__/**/*"
]
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"@unicsmcr/eslint-config": "0.0.2",
"eslint": "^7.11.0",
"jest": "^26.6.1",
"ts-jest": "^26.4.2",
"typescript": "^4.0.3"
}
}