-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.33 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
{
"name": "@klifu/core",
"version": "1.1.0",
"description": "Core game library containing all the game logic",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"pretest": "npm run build",
"test": "jest --coverage && codecov",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Klifu/core.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Klifu/core/issues"
},
"homepage": "https://github.com/Klifu/core#readme",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.171",
"codecov": "^3.8.2",
"jest": "^27.0.6",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.0",
"axios": "^0.21.1",
"lodash": "^4.17.21",
"random": "^3.0.6"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/test/setupTests.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"publishConfig": {
"access": "public"
}
}