-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 900 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "kf2_autokick",
"version": "0.3.0",
"scripts": {
"build": "tsc",
"format": "prettier src/** --write",
"start": "node lib/index.js",
"test": "jest src"
},
"dependencies": {
"debug": "^3.1.0",
"superagent": "^3.8.2",
"x-ray": "^2.3.3",
"yargs": "^10.1.1"
},
"devDependencies": {
"@types/debug": "^0.0.30",
"@types/jest": "^23.3.1",
"@types/node": "^10.9.4",
"@types/superagent": "^3.5.6",
"@types/x-ray": "^2.3.1",
"@types/yargs": "^10.0.1",
"jest": "^23.5.0",
"prettier": "^1.10.2",
"ts-jest": "^23.1.4",
"typescript": "^3.0.3"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*)\\.ts$",
"coveragePathIgnorePatterns": [
"(/__tests__/.*)\\.ts$"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"useTabs": true
}
}