-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.33 KB
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
{
"name": "tick-knock",
"version": "4.3.0",
"description": "TypeScript Entity-Component-System library",
"author": "Ilya Malanin",
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"setup": "yarn install",
"build": "tsc",
"build-watch": "tsc --watch",
"test": "jest",
"test-ci": "jest --config jest-ci.json"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"tslib": "^2.4.0"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mayakwd/tick-knock.git"
},
"bugs": {
"url": "https://github.com/mayakwd/tick-knock/issues"
},
"homepage": "https://github.com/mayakwd/tick-knock#readme",
"keywords": [
"ecs",
"entity",
"typescript",
"entity-component-system",
"gamedev",
"game"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testMatch": [
"**/tests/unit/**/*.spec.(js|ts)|**/__tests__/*.(js|ts)"
],
"transformIgnorePatterns": [
"/node_modules/"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
}
}