-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.26 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
{
"name": "discord-minesweeper",
"version": "1.0.0",
"description": "Discord MineSweeper",
"private": true,
"main": "src/main.ts",
"repository": "[email protected]:/LinaTsukusu/discord-minesweeper.git",
"author": "LinaTsukusu <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "tslint --fix './**/*.ts'",
"start": "ts-node ./src/main.ts",
"test": "jest"
},
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleNameMapper": {
"@/(.*)": "<rootDir>/src/$1"
}
},
"dependencies": {
"@types/shuffle-array": "^0.0.28",
"@types/yargs": "^12.0.8",
"discord.js": "^11.4.2",
"shuffle-array": "^1.0.1",
"yargs": "^12.0.5"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "^10.12.21",
"jest": "23.6.0",
"ts-jest": "^23.10.5",
"ts-lint": "^4.5.1",
"ts-node": "^8.0.2",
"typescript": "^3.3.1"
}
}