-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
{
"name": "ulti-mate",
"version": "1.0.0",
"description": "AI opponent for the card game Ulti",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"start": "node ./lib/index.js",
"test": "jest",
"lint": "tslint -p tsconfig.json --fix",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\""
},
"dependencies": {
"chalk": "^4.1.0",
"cli-progress": "^3.9.0",
"commander": "^7.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/cli-progress": "^3.9.1",
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.31",
"codecov": "^3.1.0",
"jest": "^26.6.3",
"prettier": "^1.13.2",
"ts-jest": "^26.5.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.13.0",
"typescript": "^4.2.3"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverage": true,
"coverageReporters": [
"json",
"html",
"json-summary"
]
}
}